fix: overlapping borrows on unix platforms
When cfg(unix), the `outpatj` meeded to last until the `set_permissions` call, but it can't exist during the `io::copy`
This commit is contained in:
parent
d0e905acc5
commit
33a787ec54
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ fn real_main() -> i32 {
|
||||||
for i in 0..archive.len() {
|
for i in 0..archive.len() {
|
||||||
let mut file = archive.by_index(i).unwrap();
|
let mut file = archive.by_index(i).unwrap();
|
||||||
let outpath = match file.name_as_child() {
|
let outpath = match file.name_as_child() {
|
||||||
Some(path) => path,
|
Some(path) => path.to_owned(),
|
||||||
None => continue,
|
None => continue,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue