parent
fbe8cce1b8
commit
3e7322e395
@ -104,16 +104,11 @@ where
|
|||||||
corpus_idx: CorpusId,
|
corpus_idx: CorpusId,
|
||||||
) -> Result<(), Error> {
|
) -> Result<(), Error> {
|
||||||
// Run this stage only once for each corpus entry and only if we haven't already inspected it
|
// Run this stage only once for each corpus entry and only if we haven't already inspected it
|
||||||
if state.corpus().get(corpus_idx)?.borrow().fuzz_level() > 0
|
|
||||||
|| state
|
|
||||||
.corpus()
|
|
||||||
.get(corpus_idx)?
|
|
||||||
.borrow()
|
|
||||||
.metadata()
|
|
||||||
.get::<SchedulerTestcaseMetaData>()
|
|
||||||
.map_or(false, |meta| meta.bitmap_size() != 0)
|
|
||||||
{
|
{
|
||||||
return Ok(());
|
let corpus = state.corpus().get(corpus_idx)?.borrow();
|
||||||
|
if corpus.fuzz_level() > 0 {
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let mut iter = self.stage_max;
|
let mut iter = self.stage_max;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user