diff options
author | Joshua Rogers <jrogers@opera.com> | 2021-04-02 22:32:38 +0000 |
---|---|---|
committer | Joshua Rogers <jrogers@opera.com> | 2021-04-02 22:32:38 +0000 |
commit | 6514e33ab6733dd4e7ae0d3eeec83db06b3f451f (patch) | |
tree | 029c34f4557e59d01858035100fc4d8616af1fc5 /src/afl-cc.c | |
parent | 920e9402a4d6101bbbed2ef7584d85a3c3de0eaa (diff) | |
download | afl++-6514e33ab6733dd4e7ae0d3eeec83db06b3f451f.tar.gz |
Replace __AFL_CHECK_LEAK with __AFL_LEAK_CHECK to be more proper.
Fix spelling mistakes. Correctly call LSAN_ERROR not MSAN_ERROR.
Diffstat (limited to 'src/afl-cc.c')
-rw-r--r-- | src/afl-cc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-cc.c b/src/afl-cc.c index e0478503..975b28d1 100644 --- a/src/afl-cc.c +++ b/src/afl-cc.c @@ -923,7 +923,7 @@ static void edit_params(u32 argc, char **argv, char **envp) { } cc_params[cc_par_cnt++] = - "-D__AFL_CHECK_LEAK()=__lsan_do_leak_check()"; + "-D__AFL_LEAK_CHECK()=__lsan_do_leak_check()"; cc_params[cc_par_cnt++] = "-D__AFL_COVERAGE_START_OFF()=int __afl_selective_coverage_start_off = " |