about summary refs log tree commit diff
path: root/src/afl-fuzz-init.c
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2024-05-02 08:35:24 +0200
committervanhauser-thc <vh@thc.org>2024-05-02 08:35:24 +0200
commit26eaf53a832be0b12dadbbd290b4a7e676818347 (patch)
treeb7171e10d36fbd8ee708ba326b4e029b38c12523 /src/afl-fuzz-init.c
parent5d623a27edcd4e6608178f80c7e29ede73138db6 (diff)
downloadafl++-26eaf53a832be0b12dadbbd290b4a7e676818347.tar.gz
AFL_DISABLE_REDUNDANT
Diffstat (limited to 'src/afl-fuzz-init.c')
-rw-r--r--src/afl-fuzz-init.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/afl-fuzz-init.c b/src/afl-fuzz-init.c
index 2d540eb1..b3fe9318 100644
--- a/src/afl-fuzz-init.c
+++ b/src/afl-fuzz-init.c
@@ -933,10 +933,13 @@ void perform_dry_run(afl_state_t *afl) {
     res = calibrate_case(afl, q, use_mem, 0, 1);
 
     /* For AFLFast schedules we update the queue entry */
-    if (unlikely(afl->schedule >= FAST && afl->schedule <= RARE) && likely(q->exec_cksum)) {
+    if (unlikely(afl->schedule >= FAST && afl->schedule <= RARE) &&
+        likely(q->exec_cksum)) {
+
       q->n_fuzz_entry = q->exec_cksum % N_FUZZ_SIZE;
+
     }
-     
+
     if (afl->stop_soon) { return; }
 
     if (res == afl->crash_mode || res == FSRV_RUN_NOBITS) {