chore: Fix borrow-of-moved-value

This commit is contained in:
Chris Hennick 2024-05-15 17:08:40 -07:00
parent 633a6733e6
commit 3e06f6433a
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -727,11 +727,11 @@ impl<R: Read + Seek> ZipArchive<R> {
std::os::windows::fs::symlink_file(target_path, outpath.as_path())?; std::os::windows::fs::symlink_file(target_path, outpath.as_path())?;
} }
} }
} else { continue;
let mut file = self.by_index(i)?;
let mut outfile = fs::File::create(&outpath)?;
io::copy(&mut file, &mut outfile)?;
} }
let mut file = self.by_index(i)?;
let mut outfile = fs::File::create(&outpath)?;
io::copy(&mut file, &mut outfile)?;
#[cfg(unix)] #[cfg(unix)]
{ {
// Check for real permissions, which we'll set in a second pass // Check for real permissions, which we'll set in a second pass