diff options
author | vanhauser-thc <vh@thc.org> | 2023-01-19 11:52:19 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2023-01-19 11:52:19 +0100 |
commit | eeca3a0b2939c605497e9b3a615ee4a466f4a3f2 (patch) | |
tree | 55e9abbb9ffc0c0388f7d45fc4d6d404aad0e3ee /src | |
parent | 151a8facae2048a26c65658dfec507233a677fb0 (diff) | |
download | afl++-eeca3a0b2939c605497e9b3a615ee4a466f4a3f2.tar.gz |
lots of fixes
Diffstat (limited to 'src')
-rw-r--r-- | src/afl-fuzz-one.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/afl-fuzz-one.c b/src/afl-fuzz-one.c index 5e352dcb..bd482562 100644 --- a/src/afl-fuzz-one.c +++ b/src/afl-fuzz-one.c @@ -564,8 +564,7 @@ u8 fuzz_one_original(afl_state_t *afl) { if (afl->cmplog_lvl == 3 || (afl->cmplog_lvl == 2 && afl->queue_cur->tc_ref) || afl->queue_cur->favored || - !(afl->fsrv.total_execs % afl->queued_items) || - get_cur_time() - afl->last_find_time > 300000) { // 300 seconds + get_cur_time() - afl->last_find_time > 600000) { // 600 seconds if (input_to_state_stage(afl, in_buf, out_buf, len)) { |