From e36185cbd564e5f48a2a177fbe7b17c2feec85a9 Mon Sep 17 00:00:00 2001 From: vanhauser-thc Date: Thu, 16 May 2024 14:46:24 +0200 Subject: [PATCH] debug --- src/afl-fuzz-queue.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/afl-fuzz-queue.c b/src/afl-fuzz-queue.c index ead6d0db..56410461 100644 --- a/src/afl-fuzz-queue.c +++ b/src/afl-fuzz-queue.c @@ -955,6 +955,8 @@ u32 calculate_score(afl_state_t *afl, struct queue_entry *q) { u32 avg_bitmap_size = afl->total_bitmap_size / bitmap_entries; u32 perf_score = 100; + return perf_score; + /* Adjust score based on execution speed of this path, compared to the global average. Multiplier ranges from 0.1x to 3x. Fast inputs are less expensive to fuzz, so we're giving them more air time. */