mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-15 03:18:07 +00:00
fix seed crash disable
This commit is contained in:
@ -1044,18 +1044,16 @@ void perform_dry_run(afl_state_t *afl) {
|
|||||||
|
|
||||||
/* Remove from fuzzing queue but keep for splicing */
|
/* Remove from fuzzing queue but keep for splicing */
|
||||||
|
|
||||||
struct queue_entry *p = afl->queue;
|
if (!q->was_fuzzed) {
|
||||||
|
|
||||||
if (!p->was_fuzzed) {
|
q->was_fuzzed = 1;
|
||||||
|
|
||||||
p->was_fuzzed = 1;
|
|
||||||
--afl->pending_not_fuzzed;
|
--afl->pending_not_fuzzed;
|
||||||
--afl->active_paths;
|
--afl->active_paths;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
p->disabled = 1;
|
q->disabled = 1;
|
||||||
p->perf_score = 0;
|
q->perf_score = 0;
|
||||||
|
|
||||||
u32 i = 0;
|
u32 i = 0;
|
||||||
while (unlikely(i < afl->queued_paths && afl->queue_buf[i] &&
|
while (unlikely(i < afl->queued_paths && afl->queue_buf[i] &&
|
||||||
|
Reference in New Issue
Block a user