Bug fix
This commit is contained in:
parent
425a05e1c8
commit
ea25dbd954
1 changed files with 3 additions and 0 deletions
|
@ -467,6 +467,9 @@ impl<W: Write + Seek> ZipWriter<W> {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn finish_file(&mut self) -> ZipResult<()> {
|
fn finish_file(&mut self) -> ZipResult<()> {
|
||||||
|
if !self.writing_to_file {
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
if self.writing_to_extra_field {
|
if self.writing_to_extra_field {
|
||||||
// Implicitly calling [`ZipWriter::end_extra_data`] for empty files.
|
// Implicitly calling [`ZipWriter::end_extra_data`] for empty files.
|
||||||
self.end_extra_data()?;
|
self.end_extra_data()?;
|
||||||
|
|
Loading…
Add table
Reference in a new issue