fix: stack overflow when '-laaR' is used

- fix formatting issue.
This commit is contained in:
Erwin van Eijk 2024-01-07 12:10:50 +01:00 committed by MartinFillon
parent bce60ad620
commit 582603b3cc

View file

@ -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