This commit is contained in:
Chris Hennick 2023-05-04 12:34:31 -07:00
parent 697578b38d
commit 5e0b216320
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74

View file

@ -909,8 +909,11 @@ impl<W: Write + Seek> ZipWriter<W> {
self.start_entry(name, options, None)?;
self.writing_to_file = true;
self.write_all(target.into().as_bytes())?;
self.writing_to_file = false;
if let Err(e) = self.write_all(target.into().as_bytes()) {
self.abort_file().unwrap();
return Err(e.into());
}
self.finish_file()?;
Ok(())
}