diff --git a/src/reader_spec.rs b/src/reader_spec.rs index 75352ab3..9ceb6389 100644 --- a/src/reader_spec.rs +++ b/src/reader_spec.rs @@ -38,12 +38,12 @@ pub fn central_header_to_zip_file(reader: &mut R) -> ZipResult String::from_utf8_lossy(file_name_raw.as_slice()).into_string(), + true => String::from_utf8_lossy(file_name_raw.as_slice()).into_owned(), false => ::cp437::to_string(file_name_raw.as_slice()), }; let file_comment = match is_utf8 { - true => String::from_utf8_lossy(file_comment_raw.as_slice()).into_string(), + true => String::from_utf8_lossy(file_comment_raw.as_slice()).into_owned(), false => ::cp437::to_string(file_comment_raw.as_slice()), };