diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2019-08-30 15:36:48 +0100 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2019-09-11 08:46:05 +0200 |
commit | 7f4341e84bb867c6e3397a978d3ee131bf8a889b (patch) | |
tree | 793173fc88592ef4600bbaf10005e317c9af6374 /linux-user/main.c | |
parent | 895e2ef521ae0eef2fdfcec8f2108d9ee3303a81 (diff) |
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>
Diffstat (limited to 'linux-user/main.c')
-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) |