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:
Marli Frost 2020-09-12 11:10:19 +01:00
parent d0e905acc5
commit 33a787ec54
No known key found for this signature in database
GPG key ID: CB0BEA7CF9BD1245

View file

@ -19,7 +19,7 @@ fn real_main() -> i32 {
for i in 0..archive.len() {
let mut file = archive.by_index(i).unwrap();
let outpath = match file.name_as_child() {
Some(path) => path,
Some(path) => path.to_owned(),
None => continue,
};