less impact

This commit is contained in:
vanhauser-thc
2023-09-03 11:22:54 +02:00
parent 78848f8637
commit a809c3c50c
5 changed files with 45 additions and 21 deletions

View File

@ -3442,7 +3442,12 @@ abandon_entry:
--afl->pending_not_fuzzed;
afl->queue_cur->was_fuzzed = 1;
afl->reinit_table = 1;
if (afl->queue_cur->favored) { --afl->pending_favored; }
if (afl->queue_cur->favored) {
--afl->pending_favored;
afl->smallest_favored = -1;
}
}
@ -5905,7 +5910,8 @@ pacemaker_fuzzing:
--afl->pending_not_fuzzed;
afl->queue_cur->was_fuzzed = 1;
if (afl->queue_cur->favored) { --afl->pending_favored; }
if (afl->queue_cur->favored) { --afl->pending_favored;
afl->smallest_favored = -1; }
}