Skip to content

Commit

Permalink
clean-up
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasTNO committed Dec 6, 2024
1 parent 3d7927f commit 9f558a9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/fuzzer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ use std::path::PathBuf;
use std::ptr::write_volatile;
use std::sync::atomic::{AtomicBool, Ordering};
use std::sync::{Arc, Mutex};
use std::time::{Duration, Instant};

use log::{error, info};

Expand Down Expand Up @@ -204,11 +203,11 @@ pub fn fuzz() -> Result<()> {
}

log::debug!("Start fuzzing loop");
// check for timeout if applicable
loop {
match fuzzer.fuzz_one(&mut stages, &mut executor, &mut state, &mut mgr) {
Ok(_) => (),
Err(libafl_bolts::Error::ShuttingDown) => {
log::info!("[Fuzzing campaign ended] Thanks for using WuppieFuzz!");
break;
}
Err(err) => {
Expand Down

0 comments on commit 9f558a9

Please sign in to comment.