diff options
author | vanhauser-thc <vh@thc.org> | 2022-01-15 13:58:17 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2022-01-15 13:58:17 +0100 |
commit | 4217a6606c92f6a88ab577ae8f91823dd731562d (patch) | |
tree | 794e7c728fee24dd097f185700147da3dd18da29 /src/afl-fuzz-queue.c | |
parent | 20177151e6c7d510b8f0ed39cca72151068ffa28 (diff) | |
download | afl++-4217a6606c92f6a88ab577ae8f91823dd731562d.tar.gz |
fix classify counts
Diffstat (limited to 'src/afl-fuzz-queue.c')
-rw-r--r-- | src/afl-fuzz-queue.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/afl-fuzz-queue.c b/src/afl-fuzz-queue.c index fc8a0d55..713c7447 100644 --- a/src/afl-fuzz-queue.c +++ b/src/afl-fuzz-queue.c @@ -769,11 +769,7 @@ void cull_queue(afl_state_t *afl) { afl->top_rated[i]->favored = 1; ++afl->queued_favored; - if (!afl->top_rated[i]->was_fuzzed) { - - ++afl->pending_favored; - - } + if (!afl->top_rated[i]->was_fuzzed) { ++afl->pending_favored; } } |