diff --git a/src/write.rs b/src/write.rs index 5e5c03a3..91f3f5ea 100644 --- a/src/write.rs +++ b/src/write.rs @@ -498,8 +498,8 @@ impl ZipWriter { /// Removes the file currently being written from the archive. pub fn abort_file(&mut self) -> ZipResult<()> { - self.files_by_name - .remove(&*self.files.pop().unwrap().file_name); + let last_file = self.files.pop().ok_or(ZipError::FileNotFound)?; + self.files_by_name.remove(&last_file.file_name); let make_plain_writer = self .inner .prepare_switch_to(CompressionMethod::Stored, None)?;