From 90223028fd0474b0f396acfaac61c5df06a25c44 Mon Sep 17 00:00:00 2001 From: lazymio Date: Mon, 19 May 2025 17:29:06 +0800 Subject: [PATCH] Remove spurious logs (#3246) --- libafl/src/executors/forkserver.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/libafl/src/executors/forkserver.rs b/libafl/src/executors/forkserver.rs index 0a82553223..16b0f964b4 100644 --- a/libafl/src/executors/forkserver.rs +++ b/libafl/src/executors/forkserver.rs @@ -396,12 +396,6 @@ impl Forkserver { )); }; - if env::var(AFL_MAP_SIZE_ENV_VAR).is_err() { - log::warn!( - "{AFL_MAP_SIZE_ENV_VAR} not set. If it is unset, the forkserver may fail to start up" - ); - } - if env::var(SHM_ENV_VAR).is_err() { return Err(Error::unknown("__AFL_SHM_ID not set. It is necessary to set this env, otherwise the forkserver cannot communicate with the fuzzer".to_string())); }