about summary refs log tree commit diff
path: root/src/afl-fuzz-run.c
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2021-06-16 15:33:03 +0200
committervanhauser-thc <vh@thc.org>2021-06-16 15:33:03 +0200
commit35153e9b495e3f61c032a3d911e4906fed0b50d6 (patch)
treef23ca6d52ccdccb2bdf82570b936e8686099e27d /src/afl-fuzz-run.c
parentc46f8c1f70918056e95c801b1a81f11c79304b05 (diff)
downloadafl++-35153e9b495e3f61c032a3d911e4906fed0b50d6.tar.gz
correct map size for small targets
Diffstat (limited to 'src/afl-fuzz-run.c')
-rw-r--r--src/afl-fuzz-run.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/afl-fuzz-run.c b/src/afl-fuzz-run.c
index 49856a9f..3de67955 100644
--- a/src/afl-fuzz-run.c
+++ b/src/afl-fuzz-run.c
@@ -424,8 +424,7 @@ u8 calibrate_case(afl_state_t *afl, struct queue_entry *q, u8 *use_mem,
         }
 
         var_detected = 1;
-        afl->stage_max =
-            afl->afl_env.afl_cal_fast ? CAL_CYCLES : CAL_CYCLES_LONG;
+        afl->stage_max = afl->afl_env.afl_cal_fast ? CAL_CYCLES : CAL_CYCLES_LONG;
 
       } else {