Skip to content

Commit 1ccacdf

Browse files
committed
Fixing rename
1 parent e8c7f5d commit 1ccacdf

File tree

1 file changed

+1
-3
lines changed
  • fuzzers/libfuzzer_libpng/src

1 file changed

+1
-3
lines changed

fuzzers/libfuzzer_libpng/src/lib.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ use libafl_bolts::{
3939
AsSlice,
4040
};
4141
use libafl_targets::{libfuzzer_initialize, libfuzzer_test_one_input, EDGES_MAP, MAX_EDGES_FOUND};
42-
use mimalloc::MiMalloc;
43-
4442
use toolbox::accum_observer::AccMapObserver;
4543

4644
/// The main fn, `no_mangle` as it is a C main
@@ -126,7 +124,7 @@ fn fuzz(corpus_dirs: &[PathBuf], objective_dir: PathBuf, broker_port: u16) -> Re
126124
AccMapObserver::new(StdMapObserver::from_mut_ptr(
127125
"edges",
128126
EDGES_MAP.as_mut_ptr(),
129-
MAX_EDGES_NUM,
127+
MAX_EDGES_FOUND,
130128
))
131129
.save_dr_cov(save_bb_coverage)
132130
.max_cnt(drcov_max_execution_cnt)

0 commit comments

Comments
 (0)