Bug fix: remove failed file from files_by_name after writing a large file without large-file option

This commit is contained in:
Chris Hennick 2023-05-01 10:23:18 -07:00
parent 188433e7e9
commit ffd1083ff4
No known key found for this signature in database
GPG key ID: 25653935CC8B6C74

View file

@ -227,7 +227,7 @@ impl<W: Write + Seek> Write for ZipWriter<W> {
&& !self.files.last_mut().unwrap().large_file
{
self.finish_file()?;
self.files.pop();
self.files_by_name.remove(&*self.files.pop().unwrap().file_name);
return Err(io::Error::new(
io::ErrorKind::Other,
"Large file option has not been set",