diff --git a/src/read.rs b/src/read.rs index 21966b55..d5502932 100644 --- a/src/read.rs +++ b/src/read.rs @@ -935,9 +935,7 @@ fn try_utf8_to_os_string(utf8_bytes: Vec) -> Result { #[cfg(windows)] fn try_utf8_to_os_string(utf8_bytes: Vec) -> Result { - Ok(OsString::from(String::from_utf8(utf8_bytes).map_err( - |_| ZipError::InvalidArchive("Invalid UTF-8 in symlink target"), - ))) + Ok(OsString::from(String::from_utf8(utf8_bytes)?)) } const fn unsupported_zip_error(detail: &'static str) -> ZipResult {