Bug fix
This commit is contained in:
parent
82cd28af3c
commit
7c39dbd4c2
2 changed files with 9 additions and 1 deletions
|
@ -114,7 +114,7 @@
|
|||
|
||||
## [0.7.4]
|
||||
|
||||
### Changed
|
||||
### Merged from upstream
|
||||
|
||||
- Added experimental [`zip_next::unstable::write::FileOptions::with_deprecated_encryption`] API to enable encrypting
|
||||
files with PKWARE encryption.
|
||||
|
|
|
@ -513,6 +513,14 @@ impl<W: Write + Seek> ZipWriter<W> {
|
|||
.inner
|
||||
.prepare_next_writer(CompressionMethod::Stored, None)?;
|
||||
self.inner.switch_to(make_plain_writer)?;
|
||||
match mem::replace(&mut self.inner, Closed) {
|
||||
Storer(MaybeEncrypted::Encrypted(writer)) => {
|
||||
let crc32 = self.stats.hasher.clone().finalize();
|
||||
self.inner = Storer(MaybeEncrypted::Unencrypted(writer.finish(crc32)?))
|
||||
}
|
||||
Storer(w) => self.inner = Storer(w),
|
||||
_ => unreachable!()
|
||||
}
|
||||
let writer = self.inner.get_plain();
|
||||
|
||||
if !self.writing_raw {
|
||||
|
|
Loading…
Add table
Reference in a new issue