This commit is contained in:
EpicPlayerA10 2024-02-29 20:54:49 +01:00
parent 51c2d40639
commit 7b9d02491f
No known key found for this signature in database
GPG Key ID: F3110BF7F9F1AB74

View File

@ -188,13 +188,14 @@ func (fs *Filesystem) DirectorySize(dir string) (int64, error) {
if !e.IsDir() {
_ = syscall.Lstat(p, &st)
// Hard links have the same inode number
if slices.Contains(hardLinks, st.Ino) {
// Don't add hard links size twice
return godirwalk.SkipThis
}
if st.Nlink > 1 {
hardLinks = append(hardLinks, st.Ino)
// Hard links have the same inode number
if slices.Contains(hardLinks, st.Ino) {
// Don't add hard links size twice
return godirwalk.SkipThis
} else {
hardLinks = append(hardLinks, st.Ino)
}
}
atomic.AddInt64(&size, st.Size)