From 0fe12b2ec9bac7a7a7f26050d8052d13b654adf5 Mon Sep 17 00:00:00 2001 From: Chris Hennick <4961925+Pr0methean@users.noreply.github.com> Date: Fri, 3 May 2024 14:34:05 -0700 Subject: [PATCH] chore: Bug fix: non-canonical path detection when MAIN_SEPARATOR is not slash or occurs twice in a row --- src/spec.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/spec.rs b/src/spec.rs index b2f9f221..b6238f90 100644 --- a/src/spec.rs +++ b/src/spec.rs @@ -220,7 +220,9 @@ pub(crate) fn path_to_string>(path: T) -> String { let mut maybe_original = None; if let Some(original) = path.as_ref().to_str() { if (MAIN_SEPARATOR == '/' || !original.contains(MAIN_SEPARATOR)) - && !original.ends_with('.') && !original.contains("./") { + && !original.ends_with('.') + && !original.contains([MAIN_SEPARATOR, MAIN_SEPARATOR]) + && !original.contains(['.', MAIN_SEPARATOR]) { if original.starts_with(MAIN_SEPARATOR) { maybe_original = Some(&original[1..]); } else {