Skip to content

Commit caf12a6

Browse files
authored
NopStage::should_restart shall return false (#3128)
1 parent db7ce82 commit caf12a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libafl/src/stages/nop.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ impl<S> Restartable<S> for NopStage {
3232
}
3333

3434
fn should_restart(&mut self, _state: &mut S) -> Result<bool, libafl_bolts::Error> {
35-
Ok(true)
35+
Ok(false)
3636
}
3737
}

0 commit comments

Comments
 (0)