File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ where
200
200
tracing:: info!(
201
201
"[ID: {}] stopping fuzzing due to AddToCorpus[StopFuzzing] action" ,
202
202
self . request_id
203
- ) ;
203
+ ) ;
204
204
return Err ( FeroxFuzzError :: FuzzingStopped ) ;
205
205
}
206
206
FlowControl :: Discard => {
@@ -216,7 +216,7 @@ where
216
216
tracing:: info!(
217
217
"[ID: {}] stopping fuzzing due to StopFuzzing action" ,
218
218
self . request_id
219
- ) ;
219
+ ) ;
220
220
return Err ( FeroxFuzzError :: FuzzingStopped ) ;
221
221
}
222
222
_ => {
@@ -319,7 +319,7 @@ where
319
319
return ;
320
320
}
321
321
322
- let request_id = response. unwrap ( ) . id ( ) ; // only used for logging
322
+ let request_id = response. as_ref ( ) . unwrap ( ) . id ( ) ; // only used for logging
323
323
324
324
// response cannot be Err after this point, so is safe to unwrap
325
325
c_observers. call_post_send_hooks ( response. unwrap ( ) ) ;
@@ -351,7 +351,7 @@ where
351
351
tracing:: info!(
352
352
"[ID: {}] stopping fuzzing due to AddToCorpus[StopFuzzing] action" ,
353
353
request_id
354
- ) ;
354
+ ) ;
355
355
c_should_quit. store ( true , Ordering :: Relaxed ) ;
356
356
}
357
357
}
You can’t perform that action at this time.
0 commit comments