style: Fix a Clippy warning

This commit is contained in:
Chris Hennick 2024-06-18 12:41:16 -07:00
parent 19118f45f3
commit 45472486f1
No known key found for this signature in database
GPG key ID: DA47AABA4961C509
2 changed files with 2 additions and 2 deletions

View file

@ -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(),

View file

@ -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)),