Skip to content

Commit

Permalink
infra: Bump LibAFL to 0.13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dergoegge committed Jul 1, 2024
1 parent 767a033 commit ea23ffc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/corpus_syncer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ where
}

if let Ok(input) = S::Input::from_file(&path) {
if !self.evaluated.insert(input.generate_name(0)) {
if !self.evaluated.insert(input.generate_name(None)) {
// Only evaulate new inputs
continue;
}
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ fn main() -> std::process::ExitCode {

let input = BytesInput::from_file(PathBuf::from(&min_opts.solution)).unwrap();
let size = input.bytes().len();
let readable_id = input.generate_name(0);
let readable_id = input.generate_name(None);

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

Expand Down

0 comments on commit ea23ffc

Please # to comment.