This commit is contained in:
Chris Hennick 2023-05-04 10:23:55 -07:00
parent 304becbda3
commit 8bc1530b2d
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74

View file

@ -498,8 +498,8 @@ impl<W: Write + Seek> ZipWriter<W> {
/// 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)?;