fix: read entire target and dont transform symlink to absoulte

This commit is contained in:
nichmor 2024-06-26 16:24:04 +03:00
parent 3c9b5dbb53
commit 955ea393ee

View file

@ -908,7 +908,7 @@ impl<R: Read + Seek> ZipArchive<R> {
}
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<R: Read + Seek> ZipArchive<R> {
{
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)]
{