Skip to content

Commit

Permalink
minor fix for constructor name
Browse files Browse the repository at this point in the history
  • Loading branch information
addisoncrump committed Jan 24, 2023
1 parent b6386e4 commit 3800c95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libafl_libfuzzer/libafl_libfuzzer_runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ macro_rules! make_fuzz_closure {
};

let crash_corpus = if let Some(prefix) = $options.artifact_prefix() {
OnDiskCorpus::with_meta_format_and_path(prefix.dir(), Some(OnDiskMetadataFormat::JsonPretty), prefix.filename_prefix().clone())
OnDiskCorpus::with_meta_format_and_prefix(prefix.dir(), Some(OnDiskMetadataFormat::JsonPretty), prefix.filename_prefix().clone())
.unwrap()
} else {
OnDiskCorpus::new(std::env::current_dir().unwrap()).unwrap()
Expand Down

0 comments on commit 3800c95

Please sign in to comment.