ci(fuzz): Fix: would try to copy from nonexistent paths after merging with another archive

This commit is contained in:
Chris Hennick 2024-06-17 18:55:01 -07:00
parent 9568e713bd
commit 4a01dd33e3
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -44,10 +44,11 @@ pub struct FileOperation<'k> {
impl <'k> FileOperation<'k> {
fn get_path(&self) -> Cow<PathBuf> {
if let BasicFileOperation::WriteDirectory(_) = self.basic {
Cow::Owned(self.path.join("/"))
} else {
Cow::Borrowed(&self.path)
match self.basic {
BasicFileOperation::WriteDirectory(_) => Cow::Owned(self.path.join("/")),
BasicFileOperation::MergeWithOtherFile { operations } =>
operations[0].0.get_path(),
_ => Cow::Borrowed(&self.path)
}
}
}