chore: Fix another error-type conversion error

This commit is contained in:
Chris Hennick 2024-05-15 15:32:08 -07:00
parent 819f86537c
commit 47a07fb964
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -935,9 +935,7 @@ fn try_utf8_to_os_string(utf8_bytes: Vec<u8>) -> Result<OsString, Infallible> {
#[cfg(windows)]
fn try_utf8_to_os_string(utf8_bytes: Vec<u8>) -> Result<OsString, std::string::FromUtf8Error> {
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<T>(detail: &'static str) -> ZipResult<T> {