Fix divergence from origin/master
This commit is contained in:
parent
81b5fb6088
commit
c14986806a
1 changed files with 1 additions and 7 deletions
|
@ -991,13 +991,7 @@ impl<R: Read + Seek> ZipArchive<R> {
|
||||||
unsupported_errors.push(ZipError::UnsupportedArchive(e))
|
unsupported_errors.push(ZipError::UnsupportedArchive(e))
|
||||||
}
|
}
|
||||||
Err(e) => invalid_errors.push(e),
|
Err(e) => invalid_errors.push(e),
|
||||||
Ok(o) => {
|
Ok(o) => ok_results.push((footer.clone(), o)),
|
||||||
if o.files.len() >= footer.number_of_files as usize {
|
|
||||||
ok_results.push((footer.clone(), o))
|
|
||||||
} else {
|
|
||||||
invalid_errors.push(InvalidArchive("wrong number of files"))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue