fix: path_to_string now properly handles the case of an empty path

This commit is contained in:
Chris Hennick 2024-06-12 21:39:06 -07:00
parent 826384d39f
commit 5bc1ba910f
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -653,6 +653,9 @@ pub(crate) fn is_dir(filename: &str) -> bool {
pub(crate) fn path_to_string<T: AsRef<Path>>(path: T) -> Box<str> {
let mut maybe_original = None;
if let Some(original) = path.as_ref().to_str() {
if (original.len() == 0) {
return String::new().into_boxed_str();
}
if (MAIN_SEPARATOR == '/' || !original[1..].contains(MAIN_SEPARATOR))
&& !original.ends_with('.')
&& !original.starts_with(['.', MAIN_SEPARATOR])