[libFuzzer] Add missing argument to CrashResistantMerge.

Fixes a build error caused by a bad merge conflict resolution for
https://reviews.llvm.org/D105084.
This commit is contained in:
Matt Morehouse 2021-09-08 11:46:37 -07:00
parent e170cf5061
commit ff77c4eac7

View file

@ -410,7 +410,7 @@ void FuzzWithFork(Random &Rand, const FuzzingOptions &Options,
Env.FilesSizes.clear();
CrashResistantMerge(Env.Args, {}, CurrentSeedFiles, &Env.Files,
TmpFeatures, &TmpNewFeatures, TmpCov, &TmpNewCov,
CFPath, false);
CFPath, /*Verbose=*/false, /*IsSetCoverMerge=*/false);
for (auto &path : Env.Files)
Env.FilesSizes.push_back(FileSize(path));
RemoveFile(CFPath);