diff options
author | vanhauser-thc <vh@thc.org> | 2021-03-27 12:53:09 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-03-27 12:53:09 +0100 |
commit | 7ca51fab19adfcda211282d4a1134eada7b60d2b (patch) | |
tree | c518e1bd8efc536689bf6c2771cad25a8c9b4504 /src/afl-fuzz-run.c | |
parent | 5ee2dd6bbdcabbdcc33278876632a9bc5060d71f (diff) | |
download | afl++-7ca51fab19adfcda211282d4a1134eada7b60d2b.tar.gz |
ensure one fuzzer sync per cycle, cycle introspection
Diffstat (limited to 'src/afl-fuzz-run.c')
-rw-r--r-- | src/afl-fuzz-run.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/afl-fuzz-run.c b/src/afl-fuzz-run.c index 83133dad..832f17bb 100644 --- a/src/afl-fuzz-run.c +++ b/src/afl-fuzz-run.c @@ -712,6 +712,7 @@ void sync_fuzzers(afl_state_t *afl) { if (afl->foreign_sync_cnt) read_foreign_testcases(afl, 0); afl->last_sync_time = get_cur_time(); + afl->last_sync_cycle = afl->queue_cycle; } |