Kaynağa Gözat

fix: stack overflow when '-laaR' is used

- fix formatting issue.
Erwin van Eijk 2 yıl önce
ebeveyn
işleme
582603b3cc
1 değiştirilmiş dosya ile 5 ekleme ve 1 silme
  1. 5 1
      src/output/color_scale.rs

+ 5 - 1
src/output/color_scale.rs

@@ -141,7 +141,11 @@ fn update_information_recursively(
 
         // We don't want to recurse into . and .., but still want to list them, therefore bypass
         // the dot_filter.
-        if file.is_directory() && r.is_some_and(|x| !x.is_too_deep(depth.0)) && file.name != "." && file.name != ".." {
+        if file.is_directory()
+            && r.is_some_and(|x| !x.is_too_deep(depth.0))
+            && file.name != "."
+            && file.name != ".."
+        {
             match file.to_dir() {
                 Ok(dir) => {
                     let files: Vec<File<'_>> = dir