From 33a787ec546d30518c6b54c347dee587dbee58b2 Mon Sep 17 00:00:00 2001 From: Marli Frost Date: Sat, 12 Sep 2020 11:10:19 +0100 Subject: [PATCH] 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` --- examples/extract.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/extract.rs b/examples/extract.rs index 5aa67570..8eeee9f6 100644 --- a/examples/extract.rs +++ b/examples/extract.rs @@ -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, };