From caf12a647cb055310856df7a7b6835e80486e53e Mon Sep 17 00:00:00 2001 From: lazymio Date: Fri, 4 Apr 2025 13:50:58 +0800 Subject: [PATCH] NopStage::should_restart shall return false (#3128) --- libafl/src/stages/nop.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libafl/src/stages/nop.rs b/libafl/src/stages/nop.rs index 3f2e21a021..e1ac21ef41 100644 --- a/libafl/src/stages/nop.rs +++ b/libafl/src/stages/nop.rs @@ -32,6 +32,6 @@ impl Restartable for NopStage { } fn should_restart(&mut self, _state: &mut S) -> Result { - Ok(true) + Ok(false) } }