diff options
| author | Alex Bennée | 2019-08-30 16:36:48 +0200 |
|---|---|---|
| committer | Laurent Vivier | 2019-09-11 08:46:05 +0200 |
| commit | 7f4341e84bb867c6e3397a978d3ee131bf8a889b (patch) | |
| tree | 793173fc88592ef4600bbaf10005e317c9af6374 | |
| parent | linux-user: erroneous fd_trans_unregister call (diff) | |
| download | qemu-7f4341e84bb867c6e3397a978d3ee131bf8a889b.tar.gz qemu-7f4341e84bb867c6e3397a978d3ee131bf8a889b.tar.xz qemu-7f4341e84bb867c6e3397a978d3ee131bf8a889b.zip | |
linux-user: fail and report on bad dfilter specs
Just passing NULL means we end up ignoring the bad dfilter spec
instead of reporting it and exiting as we should.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <20190830143648.2967-1-alex.bennee@linaro.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
| -rw-r--r-- | linux-user/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/main.c b/linux-user/main.c index 28f0065b6d..c257b063db 100644 --- a/linux-user/main.c +++ b/linux-user/main.c @@ -235,7 +235,7 @@ static void handle_arg_log(const char *arg) static void handle_arg_dfilter(const char *arg) { - qemu_set_dfilter_ranges(arg, NULL); + qemu_set_dfilter_ranges(arg, &error_fatal); } static void handle_arg_log_filename(const char *arg) |
