diff options
author | vanhauser-thc <vh@thc.org> | 2024-05-07 16:46:15 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2024-05-07 16:46:24 +0200 |
commit | ac6ccd53dff5a43050ad8a0922c8fa47e69333a8 (patch) | |
tree | acf099a464c9c98b6cff507eb36c865acbfee8ee /src/afl-fuzz-run.c | |
parent | 4ec376bd6a76c3a624d01961dcf15e83a28cda08 (diff) | |
download | afl++-ac6ccd53dff5a43050ad8a0922c8fa47e69333a8.tar.gz |
stat update during syncing
Diffstat (limited to 'src/afl-fuzz-run.c')
-rw-r--r-- | src/afl-fuzz-run.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/afl-fuzz-run.c b/src/afl-fuzz-run.c index ab96c778..ed7cb4ce 100644 --- a/src/afl-fuzz-run.c +++ b/src/afl-fuzz-run.c @@ -771,6 +771,8 @@ void sync_fuzzers(afl_state_t *afl) { afl->stage_cur = 0; afl->stage_max = 0; + show_stats(afl); + /* For every file queued by this fuzzer, parse ID and see if we have looked at it before; exec a test case if not. */ @@ -830,6 +832,7 @@ void sync_fuzzers(afl_state_t *afl) { afl->syncing_party = sd_ent->d_name; afl->queued_imported += save_if_interesting(afl, mem, new_len, fault); + show_stats(afl); afl->syncing_party = 0; munmap(mem, st.st_size); |