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) } }