Skip to content

Commit 21b0779

Browse files
WorksButNotTestedYour Name
authored andcommitted
Changes to use InMemoryCorpus (AFLplusplus#2816)
Co-authored-by: Your Name <[email protected]>
1 parent 950866a commit 21b0779

File tree

1 file changed

+3
-3
lines changed
  • fuzzers/binary_only/qemu_coverage/src

1 file changed

+3
-3
lines changed

fuzzers/binary_only/qemu_coverage/src/fuzzer.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use std::{env, fmt::Write, fs::DirEntry, io, path::PathBuf, process};
77

88
use clap::{builder::Str, Parser};
99
use libafl::{
10-
corpus::{Corpus, NopCorpus},
10+
corpus::{Corpus, InMemoryCorpus},
1111
events::{
1212
launcher::Launcher, ClientDescription, EventConfig, EventRestarter,
1313
LlmpRestartingEventManager,
@@ -221,8 +221,8 @@ pub fn fuzz() {
221221
let mut state = state.unwrap_or_else(|| {
222222
StdState::new(
223223
StdRand::new(),
224-
NopCorpus::new(),
225-
NopCorpus::new(),
224+
InMemoryCorpus::new(),
225+
InMemoryCorpus::new(),
226226
&mut feedback,
227227
&mut objective,
228228
)

0 commit comments

Comments
 (0)