chore: Fix another error-type conversion error
This commit is contained in:
parent
819f86537c
commit
47a07fb964
1 changed files with 1 additions and 3 deletions
|
@ -935,9 +935,7 @@ fn try_utf8_to_os_string(utf8_bytes: Vec<u8>) -> Result<OsString, Infallible> {
|
||||||
|
|
||||||
#[cfg(windows)]
|
#[cfg(windows)]
|
||||||
fn try_utf8_to_os_string(utf8_bytes: Vec<u8>) -> Result<OsString, std::string::FromUtf8Error> {
|
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(
|
Ok(OsString::from(String::from_utf8(utf8_bytes)?))
|
||||||
|_| ZipError::InvalidArchive("Invalid UTF-8 in symlink target"),
|
|
||||||
)))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const fn unsupported_zip_error<T>(detail: &'static str) -> ZipResult<T> {
|
const fn unsupported_zip_error<T>(detail: &'static str) -> ZipResult<T> {
|
||||||
|
|
Loading…
Add table
Reference in a new issue