Remove check for exit_code on LSAN and replace it with check for

symbolize=0.
This commit is contained in:
Joshua Rogers 2021-04-03 14:57:52 +00:00
parent afc4da47f7
commit fee7470083

View File

@ -716,10 +716,9 @@ static void set_up_environment(afl_forkserver_t *fsrv) {
if (x) {
if (!strstr(x, "exit_code=" STRINGIFY(LSAN_ERROR))) {
if (!strstr(x, "symbolize=0")) {
FATAL("Custom LSAN_OPTIONS set without exit_code=" STRINGIFY(
LSAN_ERROR) " - please fix!");
FATAL("Custom LSAN_OPTIONS set without symbolize=0 - please fix!");
}