NopStage::should_restart shall return false (#3128)

This commit is contained in:
lazymio 2025-04-04 13:50:58 +08:00 committed by GitHub
parent db7ce822dc
commit caf12a647c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -32,6 +32,6 @@ impl<S> Restartable<S> for NopStage {
} }
fn should_restart(&mut self, _state: &mut S) -> Result<bool, libafl_bolts::Error> { fn should_restart(&mut self, _state: &mut S) -> Result<bool, libafl_bolts::Error> {
Ok(true) Ok(false)
} }
} }