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