This commit is contained in:
Dominik Maier 2021-04-07 11:35:35 +02:00
parent 56ce44ff80
commit 711b54929a
3 changed files with 2 additions and 5 deletions

View File

@ -537,7 +537,7 @@ where
println!("Doing broker things. Run this tool again to start fuzzing in a client.");
mgr.broker_loop()?;
return Err(Error::ShuttingDown);
}
}
// We are the fuzzer respawner in a llmp client
mgr.to_env(_ENV_FUZZER_BROKER_CLIENT_INITIAL);
@ -574,7 +574,6 @@ where
}
ctr = ctr.wrapping_add(1);
}
} else {
// We are the newly started fuzzing instance, first, connect to our own restore map.

View File

@ -16,7 +16,6 @@ pub struct BytesInput {
impl Input for BytesInput {}
/// Rc Ref-cell from Input
impl From<BytesInput> for Rc<RefCell<BytesInput>> {
fn from(input: BytesInput) -> Self {

View File

@ -453,8 +453,7 @@ where
where
OT: ObserversTuple,
{
self
.feedbacks_mut()
self.feedbacks_mut()
.is_interesting_all(input, observers, exit_kind)
}