about summary refs log tree commit diff
path: root/src/afl-fuzz-init.c
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2021-03-09 14:11:52 +0100
committervanhauser-thc <vh@thc.org>2021-03-09 14:11:52 +0100
commit74a6044b3fba496c1255f9aedbf5b7253ae29f0e (patch)
treebaa0cb02334533375c9a40786973388496814dec /src/afl-fuzz-init.c
parente82ce952517cbb1db96101e84c53500a9a3be506 (diff)
downloadafl++-74a6044b3fba496c1255f9aedbf5b7253ae29f0e.tar.gz
fix sanitizer settings
Diffstat (limited to 'src/afl-fuzz-init.c')
-rw-r--r--src/afl-fuzz-init.c2
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!");