style: Fix a Clippy warning
This commit is contained in:
parent
19118f45f3
commit
45472486f1
2 changed files with 2 additions and 2 deletions
|
@ -812,7 +812,7 @@ impl<R: Read + Seek> ZipArchive<R> {
|
|||
pub fn with_config(config: Config, mut reader: R) -> ZipResult<ZipArchive<R>> {
|
||||
let mut results = spec::Zip32CentralDirectoryEnd::find_and_parse(&mut reader)?;
|
||||
for (footer, cde_start_pos) in results.iter_mut() {
|
||||
if let Ok(shared) = Self::get_metadata(config, &mut reader, &footer, *cde_start_pos) {
|
||||
if let Ok(shared) = Self::get_metadata(config, &mut reader, footer, *cde_start_pos) {
|
||||
return Ok(ZipArchive {
|
||||
reader,
|
||||
shared: shared.into(),
|
||||
|
|
|
@ -628,7 +628,7 @@ impl<A: Read + Write + Seek> ZipWriter<A> {
|
|||
let mut results = spec::Zip32CentralDirectoryEnd::find_and_parse(&mut readwriter)?;
|
||||
for (footer, cde_start_pos) in results.iter_mut() {
|
||||
if let Ok(metadata) =
|
||||
ZipArchive::get_metadata(config, &mut readwriter, &footer, *cde_start_pos)
|
||||
ZipArchive::get_metadata(config, &mut readwriter, footer, *cde_start_pos)
|
||||
{
|
||||
return Ok(ZipWriter {
|
||||
inner: Storer(MaybeEncrypted::Unencrypted(readwriter)),
|
||||
|
|
Loading…
Add table
Reference in a new issue