diff options
author | van Hauser <vh@thc.org> | 2024-10-25 17:47:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-25 17:47:27 +0200 |
commit | 009f663e2c9c5c00ab2159598b4c4b3eddde1f06 (patch) | |
tree | 8f05cc420238daa7ad88e78b4c5dee0b5bb09da9 | |
parent | 7f614be3a555435421465e35536e70ff9c960a79 (diff) | |
parent | 1efb7c8a8b54c3ff236701221e532481ea63b575 (diff) | |
download | afl++-009f663e2c9c5c00ab2159598b4c4b3eddde1f06.tar.gz |
Merge pull request #2231 from dergoegge/2024-08-fix-start-off
Make `__AFL_COVERAGE_START_OFF` work for targets with "small" maps
-rw-r--r-- | instrumentation/afl-compiler-rt.o.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/instrumentation/afl-compiler-rt.o.c b/instrumentation/afl-compiler-rt.o.c index 0da689b2..6084880f 100644 --- a/instrumentation/afl-compiler-rt.o.c +++ b/instrumentation/afl-compiler-rt.o.c @@ -630,21 +630,21 @@ static void __afl_map_shm(void) { __afl_area_ptr_dummy = (u8 *)malloc(__afl_map_size); - if (__afl_area_ptr_dummy) { + } - if (__afl_selective_coverage_start_off) { + if (__afl_area_ptr_dummy) { - __afl_area_ptr = __afl_area_ptr_dummy; + if (__afl_selective_coverage_start_off) { - } + __afl_area_ptr = __afl_area_ptr_dummy; - } else { + } - fprintf(stderr, "Error: __afl_selective_coverage failed!\n"); - __afl_selective_coverage = 0; - // continue; + } else { - } + fprintf(stderr, "Error: __afl_selective_coverage failed!\n"); + __afl_selective_coverage = 0; + // continue; } |