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."); println!("Doing broker things. Run this tool again to start fuzzing in a client.");
mgr.broker_loop()?; mgr.broker_loop()?;
return Err(Error::ShuttingDown); return Err(Error::ShuttingDown);
} }
// We are the fuzzer respawner in a llmp client // We are the fuzzer respawner in a llmp client
mgr.to_env(_ENV_FUZZER_BROKER_CLIENT_INITIAL); mgr.to_env(_ENV_FUZZER_BROKER_CLIENT_INITIAL);
@ -574,7 +574,6 @@ where
} }
ctr = ctr.wrapping_add(1); ctr = ctr.wrapping_add(1);
} }
} else { } else {
// We are the newly started fuzzing instance, first, connect to our own restore map. // 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 {} impl Input for BytesInput {}
/// Rc Ref-cell from Input /// Rc Ref-cell from Input
impl From<BytesInput> for Rc<RefCell<BytesInput>> { impl From<BytesInput> for Rc<RefCell<BytesInput>> {
fn from(input: BytesInput) -> Self { fn from(input: BytesInput) -> Self {

View File

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