diff --git a/src/write.rs b/src/write.rs index 79c1769d..a71af4cb 100644 --- a/src/write.rs +++ b/src/write.rs @@ -909,8 +909,11 @@ impl ZipWriter { 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(()) }