From 17fee7938a33aebaab84f21f12a7551c2576bb48 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Wed, 15 May 2024 16:57:37 -0700 Subject: [PATCH] refactor: Eliminate a clone that's no longer necessary --- src/read.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/read.rs b/src/read.rs index 40fc44e7..38da3e21 100644 --- a/src/read.rs +++ b/src/read.rs @@ -706,8 +706,7 @@ impl ZipArchive { let target = target.into_boxed_str(); let target_is_dir_from_archive = self.shared.files.contains_key(&target) && is_dir(&target); - let target_internal_path: PathBuf = target.to_string().into(); - let target_path = directory.as_ref().join(target_internal_path.clone()); + let target_path = directory.as_ref().join(target.to_string().into()); let target_is_dir = if target_is_dir_from_archive { true } else if let Ok(meta) = std::fs::metadata(&target_path) {