Skip to content

Commit

Permalink
Do not mangle in dry run
Browse files Browse the repository at this point in the history
  • Loading branch information
AteChroma0j committed Jan 4, 2024
1 parent 10802df commit e90a3e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuzz.c
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ static bool fuzz_fetchInput(run_t* run) {
fuzzState_t st = fuzz_getState(run->global);
if (st == _HF_STATE_DYNAMIC_DRY_RUN) {
run->mutationsPerRun = 0U;
if (input_prepareStaticFile(run, /* rewind= */ false, true)) {
if (input_prepareStaticFile(run, /* rewind= */ false, /* mangle= */ false)) {
return true;
}
fuzz_setDynamicMainState(run);
Expand Down

0 comments on commit e90a3e4

Please sign in to comment.