mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-14 02:58:08 +00:00
fix another pending_not_fuzzed location
This commit is contained in:
@ -413,7 +413,7 @@ void dedup_extras(afl_state_t *afl) {
|
||||
if (j + 1 < afl->extras_cnt) // not at the end of the list?
|
||||
memmove((char *)&afl->extras[j], (char *)&afl->extras[j + 1],
|
||||
(afl->extras_cnt - j - 1) * sizeof(struct extra_data));
|
||||
afl->extras_cnt--;
|
||||
--afl->extras_cnt;
|
||||
goto restart_dedup; // restart if several duplicates are in a row
|
||||
|
||||
}
|
||||
|
@ -1041,6 +1041,7 @@ void perform_dry_run(afl_state_t *afl) {
|
||||
|
||||
if (!p->was_fuzzed) {
|
||||
|
||||
p->was_fuzzed = 1;
|
||||
--afl->pending_not_fuzzed;
|
||||
--afl->active_paths;
|
||||
|
||||
@ -1153,7 +1154,7 @@ restart_outer_cull_loop:
|
||||
|
||||
p->was_fuzzed = 1;
|
||||
--afl->pending_not_fuzzed;
|
||||
afl->active_paths--;
|
||||
--afl->active_paths;
|
||||
|
||||
}
|
||||
|
||||
@ -1168,7 +1169,7 @@ restart_outer_cull_loop:
|
||||
|
||||
q->was_fuzzed = 1;
|
||||
--afl->pending_not_fuzzed;
|
||||
afl->active_paths--;
|
||||
--afl->active_paths;
|
||||
|
||||
}
|
||||
|
||||
|
@ -530,7 +530,7 @@ u8 fuzz_one_original(afl_state_t *afl) {
|
||||
len = afl->queue_cur->len;
|
||||
|
||||
/* maybe current entry is not ready for splicing anymore */
|
||||
if (unlikely(len <= 4 && old_len > 4)) afl->ready_for_splicing_count--;
|
||||
if (unlikely(len <= 4 && old_len > 4)) --afl->ready_for_splicing_count;
|
||||
|
||||
}
|
||||
|
||||
@ -2958,7 +2958,7 @@ static u8 mopt_common_fuzzing(afl_state_t *afl, MOpt_globals_t MOpt_globals) {
|
||||
len = afl->queue_cur->len;
|
||||
|
||||
/* maybe current entry is not ready for splicing anymore */
|
||||
if (unlikely(len <= 4 && old_len > 4)) afl->ready_for_splicing_count--;
|
||||
if (unlikely(len <= 4 && old_len > 4)) --afl->ready_for_splicing_count;
|
||||
|
||||
}
|
||||
|
||||
|
@ -1636,7 +1636,7 @@ int main(int argc, char **argv_orig, char **envp) {
|
||||
(afl->old_seed_selection && !afl->queue_cur))) {
|
||||
|
||||
++afl->queue_cycle;
|
||||
runs_in_current_cycle = 0;
|
||||
runs_in_current_cycle = (u32)-1;
|
||||
afl->cur_skipped_paths = 0;
|
||||
|
||||
if (unlikely(afl->old_seed_selection)) {
|
||||
|
Reference in New Issue
Block a user