diff options
author | Joshua Rogers <jrogers@opera.com> | 2021-04-03 14:50:35 +0000 |
---|---|---|
committer | Joshua Rogers <jrogers@opera.com> | 2021-04-03 14:50:35 +0000 |
commit | afc4da47f78a24d5e441e3815e5b322d1b27fd56 (patch) | |
tree | c4f0b9f69f50d3c59e1733fadbc8a689ed638ee1 /src/afl-showmap.c | |
parent | 6514e33ab6733dd4e7ae0d3eeec83db06b3f451f (diff) | |
download | afl++-afc4da47f78a24d5e441e3815e5b322d1b27fd56.tar.gz |
Fix typos,
Use symbolize=0 for LSAN, Remove syntactic sugar.
Diffstat (limited to 'src/afl-showmap.c')
-rw-r--r-- | src/afl-showmap.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/afl-showmap.c b/src/afl-showmap.c index bf076683..2b7d200b 100644 --- a/src/afl-showmap.c +++ b/src/afl-showmap.c @@ -570,9 +570,11 @@ static void set_up_environment(afl_forkserver_t *fsrv) { "handle_sigfpe=0:" "handle_sigill=0", 0); + setenv("LSAN_OPTIONS", "exitcode=" STRINGIFY(LSAN_ERROR) ":" - "fast_unwind_on_malloc=0", + "fast_unwind_on_malloc=0:" + "symbolize=0", 0); setenv("UBSAN_OPTIONS", |