file.c (compute_dir_size): don't break the directory reading loop

if cannot get the stat of current entry.
This commit is contained in:
Andrew Borodin 2009-04-12 18:43:07 +04:00
parent 11bc00bea9
commit 49e72ec135
1 changed files with 1 additions and 1 deletions

View File

@ -1592,7 +1592,7 @@ compute_dir_size (const char *dirname, const void *ui,
if (res != 0) {
g_free (fullname);
break;
continue;
}
if (S_ISDIR (s.st_mode)) {