Skip to content

Commit ed31cc0

Browse files
committed
fixed error in merge
1 parent d8f8042 commit ed31cc0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/fuzzers/async_fuzzer.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ where
200200
tracing::info!(
201201
"[ID: {}] stopping fuzzing due to AddToCorpus[StopFuzzing] action",
202202
self.request_id
203-
);
203+
);
204204
return Err(FeroxFuzzError::FuzzingStopped);
205205
}
206206
FlowControl::Discard => {
@@ -216,7 +216,7 @@ where
216216
tracing::info!(
217217
"[ID: {}] stopping fuzzing due to StopFuzzing action",
218218
self.request_id
219-
);
219+
);
220220
return Err(FeroxFuzzError::FuzzingStopped);
221221
}
222222
_ => {
@@ -319,7 +319,7 @@ where
319319
return;
320320
}
321321

322-
let request_id = response.unwrap().id(); // only used for logging
322+
let request_id = response.as_ref().unwrap().id(); // only used for logging
323323

324324
// response cannot be Err after this point, so is safe to unwrap
325325
c_observers.call_post_send_hooks(response.unwrap());
@@ -351,7 +351,7 @@ where
351351
tracing::info!(
352352
"[ID: {}] stopping fuzzing due to AddToCorpus[StopFuzzing] action",
353353
request_id
354-
);
354+
);
355355
c_should_quit.store(true, Ordering::Relaxed);
356356
}
357357
}

0 commit comments

Comments
 (0)