diff options
author | van Hauser <vh@thc.org> | 2021-01-28 14:11:33 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2021-01-28 14:11:33 +0100 |
commit | a61a30dee03aced16d117150c4dbfd7079de7e68 (patch) | |
tree | 54d9b3d693f72a515c120b27e9156b1b80356c7c /src/afl-fuzz.c | |
parent | d62c83d58f67cd911b0a49f0e6662ac5b75741ad (diff) | |
download | afl++-a61a30dee03aced16d117150c4dbfd7079de7e68.tar.gz |
fix another pending_not_fuzzed location
Diffstat (limited to 'src/afl-fuzz.c')
-rw-r--r-- | src/afl-fuzz.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c index a1f749b5..e856730e 100644 --- a/src/afl-fuzz.c +++ b/src/afl-fuzz.c @@ -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)) { |