Add debug_assert! that file end isn't before start
This commit is contained in:
parent
ed5c76d2e8
commit
5d9296244c
1 changed files with 1 additions and 0 deletions
|
@ -471,6 +471,7 @@ impl<W: Write + Seek> ZipWriter<W> {
|
|||
file.uncompressed_size = self.stats.bytes_written;
|
||||
|
||||
let file_end = writer.stream_position()?;
|
||||
debug_assert!(file_end >= self.stats.start);
|
||||
file.compressed_size = file_end - self.stats.start;
|
||||
|
||||
update_local_file_header(writer, file)?;
|
||||
|
|
Loading…
Add table
Reference in a new issue