This commit is contained in:
Chris Hennick 2023-05-04 12:23:14 -07:00
parent 425a05e1c8
commit ea25dbd954
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74

View file

@ -467,6 +467,9 @@ impl<W: Write + Seek> ZipWriter<W> {
}
fn finish_file(&mut self) -> ZipResult<()> {
if !self.writing_to_file {
return Ok(());
}
if self.writing_to_extra_field {
// Implicitly calling [`ZipWriter::end_extra_data`] for empty files.
self.end_extra_data()?;