From 955ea393eeaacaf7f0a7f26fb6b044231daf9fbe Mon Sep 17 00:00:00 2001 From: nichmor Date: Wed, 26 Jun 2024 16:24:04 +0300 Subject: [PATCH] fix: read entire target and dont transform symlink to absoulte --- src/read.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/read.rs b/src/read.rs index 44da9881..32fabdb8 100644 --- a/src/read.rs +++ b/src/read.rs @@ -908,7 +908,7 @@ impl ZipArchive { } let symlink_target = if file.is_symlink() && (cfg!(unix) || cfg!(windows)) { let mut target = Vec::with_capacity(file.size() as usize); - file.read_exact(&mut target)?; + file.read_to_end(&mut target)?; Some(target) } else { None @@ -922,8 +922,7 @@ impl ZipArchive { { use std::os::unix::ffi::OsStringExt; let target = OsString::from_vec(target); - let target_path = directory.as_ref().join(target); - std::os::unix::fs::symlink(target_path, outpath.as_path())?; + std::os::unix::fs::symlink(&target, outpath.as_path())?; } #[cfg(windows)] {