diff --git a/fuzz/fuzz_targets/fuzz_write.rs b/fuzz/fuzz_targets/fuzz_write.rs index ff495ffa..ba8da3cf 100644 --- a/fuzz/fuzz_targets/fuzz_write.rs +++ b/fuzz/fuzz_targets/fuzz_write.rs @@ -49,8 +49,9 @@ impl FileOperation { } fn do_operation(writer: &mut RefCell>, - operation: &FileOperation) -> Result<(), Box> + operation: FileOperation) -> Result<(), Box> where T: Read + Write + Seek { + let should_reopen = operation.should_reopen(); match operation { FileOperation::Write {file, mut options, ..} => { if file.contents.iter().map(Vec::len).sum::() >= u32::MAX as usize { @@ -61,16 +62,18 @@ fn do_operation(writer: &mut RefCell>, writer.borrow_mut().write_all(chunk.as_slice())?; } } - FileOperation::ShallowCopy {base, new_name, .. } => { - do_operation(writer, base)?; - writer.borrow_mut().shallow_copy_file(&base.get_name(), new_name)?; + FileOperation::ShallowCopy {base, ref new_name, .. } => { + let base_name = base.get_name(); + do_operation(writer, *base)?; + writer.borrow_mut().shallow_copy_file(&base_name, new_name)?; } - FileOperation::DeepCopy {base, new_name, .. } => { - do_operation(writer, base)?; - writer.borrow_mut().deep_copy_file(&base.get_name(), new_name)?; + FileOperation::DeepCopy {base, ref new_name, .. } => { + let base_name = base.get_name(); + do_operation(writer, *base)?; + writer.borrow_mut().deep_copy_file(&base_name, new_name)?; } } - if operation.should_reopen() { + if should_reopen { let new_writer = zip_next::ZipWriter::new_append(writer.borrow_mut().finish().unwrap()).unwrap(); *writer = new_writer.into(); } @@ -80,7 +83,7 @@ fn do_operation(writer: &mut RefCell>, fuzz_target!(|data: Vec| { let mut writer = RefCell::new(zip_next::ZipWriter::new(Cursor::new(Vec::new()))); for operation in data { - let _ = do_operation(&mut writer, &operation); + let _ = do_operation(&mut writer, operation); } let _ = zip_next::ZipArchive::new(writer.borrow_mut().finish().unwrap()); }); \ No newline at end of file diff --git a/src/write.rs b/src/write.rs index 25434bb5..478cba54 100644 --- a/src/write.rs +++ b/src/write.rs @@ -1247,6 +1247,7 @@ fn write_central_directory_header(writer: &mut T, file: &ZipFileData) writer.write_all(&zip64_extra_field[..zip64_extra_field_length as usize])?; // extra field writer.write_all(&file.extra_field)?; + writer.write_all(&file.central_extra_field)?; // file comment //