diff options
author | vanhauser-thc <vh@thc.org> | 2021-05-11 22:06:37 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-05-11 22:06:37 +0200 |
commit | 72ca9b4684981ce2b807e4efd218bd1924f3e6b1 (patch) | |
tree | 1fe283283e5e8493e9e526acd50aad157446fceb /src/afl-fuzz.c | |
parent | 8929da339191152cdc69e4c99ddeaeff6d0bc777 (diff) | |
download | afl++-72ca9b4684981ce2b807e4efd218bd1924f3e6b1.tar.gz |
fix a few cur_time uses
Diffstat (limited to 'src/afl-fuzz.c')
-rw-r--r-- | src/afl-fuzz.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c index 8de3ed6b..094fd161 100644 --- a/src/afl-fuzz.c +++ b/src/afl-fuzz.c @@ -1940,8 +1940,10 @@ int main(int argc, char **argv_orig, char **envp) { /* If we had a full queue cycle with no new finds, try recombination strategies next. */ - if (unlikely(afl->queued_paths == prev_queued && - (get_cur_time() - afl->start_time) >= 3600)) { + if (unlikely(afl->queued_paths == prev_queued + /* FIXME TODO BUG: && (get_cur_time() - afl->start_time) >= + 3600 */ + )) { if (afl->use_splicing) { |