perf: Drop normalized_components slightly sooner when not using it

This commit is contained in:
Chris Hennick 2024-05-03 14:06:29 -07:00
parent efbea6f747
commit 753eedb3a7
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -250,6 +250,7 @@ pub(crate) fn path_to_string<T: AsRef<Path>>(path: T) -> String {
if recreate { if recreate {
normalized_components.join("/") normalized_components.join("/")
} else { } else {
drop(normalized_components);
let original = original.unwrap(); let original = original.unwrap();
if !original.starts_with('/') { if !original.starts_with('/') {
let mut slash_original = String::with_capacity(original.len() + 1); let mut slash_original = String::with_capacity(original.len() + 1);