fix: path_to_string now properly handles the case of an empty path
This commit is contained in:
parent
826384d39f
commit
5bc1ba910f
1 changed files with 3 additions and 0 deletions
|
@ -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])
|
||||
|
|
Loading…
Add table
Reference in a new issue