Bug fix
This commit is contained in:
parent
779c9d38fc
commit
7491fc86e8
1 changed files with 0 additions and 2 deletions
|
@ -9,8 +9,6 @@ fn decompress_all(data: &[u8]) -> Result<(), Box<dyn std::error::Error>> {
|
||||||
let mut zip = zip_next::ZipArchive::new(reader)?;
|
let mut zip = zip_next::ZipArchive::new(reader)?;
|
||||||
|
|
||||||
for i in 0..zip.len() {
|
for i in 0..zip.len() {
|
||||||
let file = zip.by_index(i)?;
|
|
||||||
let expected_bytes = file.size().min(MAX_BYTES_TO_READ);
|
|
||||||
let file = zip.by_index(i)?.take(MAX_BYTES_TO_READ);
|
let file = zip.by_index(i)?.take(MAX_BYTES_TO_READ);
|
||||||
std::io::copy(&mut file, &mut std::io::sink())?;
|
std::io::copy(&mut file, &mut std::io::sink())?;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue