chore: Fix borrow-of-moved-value
This commit is contained in:
parent
633a6733e6
commit
3e06f6433a
1 changed files with 4 additions and 4 deletions
|
@ -727,11 +727,11 @@ impl<R: Read + Seek> ZipArchive<R> {
|
|||
std::os::windows::fs::symlink_file(target_path, outpath.as_path())?;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
let mut file = self.by_index(i)?;
|
||||
let mut outfile = fs::File::create(&outpath)?;
|
||||
io::copy(&mut file, &mut outfile)?;
|
||||
continue;
|
||||
}
|
||||
let mut file = self.by_index(i)?;
|
||||
let mut outfile = fs::File::create(&outpath)?;
|
||||
io::copy(&mut file, &mut outfile)?;
|
||||
#[cfg(unix)]
|
||||
{
|
||||
// Check for real permissions, which we'll set in a second pass
|
||||
|
|
Loading…
Add table
Reference in a new issue