diff options
author | vanhauser-thc <vh@thc.org> | 2021-03-09 14:11:52 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-03-09 14:11:52 +0100 |
commit | 74a6044b3fba496c1255f9aedbf5b7253ae29f0e (patch) | |
tree | baa0cb02334533375c9a40786973388496814dec /src/afl-fuzz-init.c | |
parent | e82ce952517cbb1db96101e84c53500a9a3be506 (diff) | |
download | afl++-74a6044b3fba496c1255f9aedbf5b7253ae29f0e.tar.gz |
fix sanitizer settings
Diffstat (limited to 'src/afl-fuzz-init.c')
-rw-r--r-- | src/afl-fuzz-init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-fuzz-init.c b/src/afl-fuzz-init.c index 3dbc4c65..2d5f32a7 100644 --- a/src/afl-fuzz-init.c +++ b/src/afl-fuzz-init.c @@ -2457,7 +2457,7 @@ void check_asan_opts(afl_state_t *afl) { } - if (!strstr(x, "symbolize=0")) { + if (!afl->debug && !strstr(x, "symbolize=0")) { FATAL("Custom MSAN_OPTIONS set without symbolize=0 - please fix!"); |