From 675665e4c00adca3d864c9adbe36dfe4aa7d969b Mon Sep 17 00:00:00 2001 From: Mathijs van de Nes Date: Thu, 25 Dec 2014 15:29:02 +0100 Subject: [PATCH] into_string -> into_owned --- src/reader_spec.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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()), };