mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-17 04:18:06 +00:00
less impact
This commit is contained in:
@ -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; }
|
||||
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user