From 1d2de1cb6d8790585104c26d7cf0946097e3ad91 Mon Sep 17 00:00:00 2001 From: Kuang-che Wu Date: Fri, 11 Apr 2025 02:18:43 +0000 Subject: [PATCH] remove dead code in comment --- include/afl-fuzz.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h index d8ccb20d..4729c321 100644 --- a/include/afl-fuzz.h +++ b/include/afl-fuzz.h @@ -1344,7 +1344,6 @@ static inline u32 rand_below(afl_state_t *afl, u32 limit) { ck_read(afl->fsrv.dev_urandom_fd, &afl->rand_seed, sizeof(afl->rand_seed), "/dev/urandom"); - // srandom(afl->rand_seed[0]); afl->rand_cnt = (RESEED_RNG / 2) + (afl->rand_seed[1] % RESEED_RNG); }