From 8680df6f1f7edf90f55bb5eff512ad249b49db07 Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Sun, 14 May 2023 18:33:29 -0700 Subject: [PATCH] Bug fix --- fuzz/fuzz_targets/fuzz_write.rs | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/fuzz/fuzz_targets/fuzz_write.rs b/fuzz/fuzz_targets/fuzz_write.rs index a068ff07..4dd02a87 100644 --- a/fuzz/fuzz_targets/fuzz_write.rs +++ b/fuzz/fuzz_targets/fuzz_write.rs @@ -29,12 +29,11 @@ pub struct FileOperation { } impl FileOperation { - fn referenceable_name(&self) -> &str { - if let WriteDirectory(_) = self.basic && !self.name.ends_with('\\') - && !self.name.ends_with('/') { - self.name + "/" - } else { - self.name + fn referenceable_name(&self) -> String { + if let BasicFileOperation::WriteDirectory(_) = self.basic { + if !self.name.ends_with('\\') && !self.name.ends_with('/') { + return self.name.to_owned() + "/"; + } } } } @@ -45,7 +44,7 @@ fn do_operation(writer: &mut RefCell>, let name = operation.name; match operation.basic { BasicFileOperation::WriteNormalFile {contents, mut options, ..} => { - if file.contents.iter().map(Vec::len).sum::() >= u32::MAX as usize { + if contents.iter().map(Vec::len).sum::() >= u32::MAX as usize { options = options.large_file(true); } writer.borrow_mut().start_file(name, options)?; @@ -60,12 +59,12 @@ fn do_operation(writer: &mut RefCell>, writer.borrow_mut().add_symlink(name, target.to_string_lossy(), options)?; } BasicFileOperation::ShallowCopy(base) => { - let base_name = base.referenceable_name().to_owned(); + let base_name = base.referenceable_name(); do_operation(writer, *base)?; writer.borrow_mut().shallow_copy_file(&base_name, &name)?; } BasicFileOperation::DeepCopy(base) => { - let base_name = base.referenceable_name().to_owned(); + let base_name = base.referenceable_name(); do_operation(writer, *base)?; writer.borrow_mut().deep_copy_file(&base_name, &name)?; }