Bug fix
This commit is contained in:
parent
304becbda3
commit
8bc1530b2d
1 changed files with 2 additions and 2 deletions
|
@ -498,8 +498,8 @@ impl<W: Write + Seek> ZipWriter<W> {
|
||||||
|
|
||||||
/// Removes the file currently being written from the archive.
|
/// Removes the file currently being written from the archive.
|
||||||
pub fn abort_file(&mut self) -> ZipResult<()> {
|
pub fn abort_file(&mut self) -> ZipResult<()> {
|
||||||
self.files_by_name
|
let last_file = self.files.pop().ok_or(ZipError::FileNotFound)?;
|
||||||
.remove(&*self.files.pop().unwrap().file_name);
|
self.files_by_name.remove(&last_file.file_name);
|
||||||
let make_plain_writer = self
|
let make_plain_writer = self
|
||||||
.inner
|
.inner
|
||||||
.prepare_switch_to(CompressionMethod::Stored, None)?;
|
.prepare_switch_to(CompressionMethod::Stored, None)?;
|
||||||
|
|
Loading…
Add table
Reference in a new issue