diff options
author | van Hauser <vh@thc.org> | 2024-05-11 09:16:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-11 09:16:21 +0200 |
commit | 90fbf59bf16f057e50132b81be759414787ce1a3 (patch) | |
tree | e57ec2ff73da06776f6cf9c20eb907a8c5aebf05 /src/afl-fuzz-run.c | |
parent | ad0d0c77fb313e6edfee111fecf2bcd16d8f915e (diff) | |
parent | 93c7cbd49603c1a256caf3ab6e971c9f4e40bab4 (diff) | |
download | afl++-90fbf59bf16f057e50132b81be759414787ce1a3.tar.gz |
Merge pull request #2084 from AFLplusplus/dev
push to stable
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); |