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

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