about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--afl-fuzz.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/afl-fuzz.c b/afl-fuzz.c
index 1b5ccba5..422260ef 100644
--- a/afl-fuzz.c
+++ b/afl-fuzz.c
@@ -8845,6 +8845,14 @@ static u8 pilot_fuzzing(char** argv) {
 
 				}
 				new_hit_cnt = queued_paths + unique_crashes;
+				
+				if (!splice_cycle) {
+          stage_finds[STAGE_HAVOC]  += new_hit_cnt - orig_hit_cnt;
+          stage_cycles[STAGE_HAVOC] += stage_max;
+        } else {
+          stage_finds[STAGE_SPLICE]  += new_hit_cnt - orig_hit_cnt;
+          stage_cycles[STAGE_SPLICE] += stage_max;
+        }
 
 #ifndef IGNORE_FINDS