Skip to content

Commit ea23ffc

Browse files
committed
infra: Bump LibAFL to 0.13.1
1 parent 767a033 commit ea23ffc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/corpus_syncer.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ where
8181
}
8282

8383
if let Ok(input) = S::Input::from_file(&path) {
84-
if !self.evaluated.insert(input.generate_name(0)) {
84+
if !self.evaluated.insert(input.generate_name(None)) {
8585
// Only evaulate new inputs
8686
continue;
8787
}

src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ fn main() -> std::process::ExitCode {
290290

291291
let input = BytesInput::from_file(PathBuf::from(&min_opts.solution)).unwrap();
292292
let size = input.bytes().len();
293-
let readable_id = input.generate_name(0);
293+
let readable_id = input.generate_name(None);
294294

295295
let id = state.corpus_mut().add(Testcase::new(input)).unwrap();
296296

0 commit comments

Comments
 (0)