diff options
author | vanhauser-thc <vh@thc.org> | 2024-06-04 14:47:58 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2024-06-04 14:48:02 +0200 |
commit | 2d9b793dbbe9288a1caa4459c280678179bb46c9 (patch) | |
tree | 41982737fe085d21675c11625e8b81d936d57fce /src/afl-fuzz-run.c | |
parent | 7f02f0da616cf2adf11c139e203c52442dbe52cd (diff) | |
download | afl++-2d9b793dbbe9288a1caa4459c280678179bb46c9.tar.gz |
AFL_NO_SYNC
Diffstat (limited to 'src/afl-fuzz-run.c')
-rw-r--r-- | src/afl-fuzz-run.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/afl-fuzz-run.c b/src/afl-fuzz-run.c index 4e2cceff..6a0da6ab 100644 --- a/src/afl-fuzz-run.c +++ b/src/afl-fuzz-run.c @@ -666,6 +666,8 @@ abort_calibration: void sync_fuzzers(afl_state_t *afl) { + if (unlikely(afl->afl_env.afl_no_sync)) { return; } + DIR *sd; struct dirent *sd_ent; u32 sync_cnt = 0, synced = 0, entries = 0; |