diff --git a/src/read.rs b/src/read.rs index 25afc73f..e49ef6bf 100644 --- a/src/read.rs +++ b/src/read.rs @@ -727,11 +727,11 @@ impl ZipArchive { 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