missed hunk of "stop using big static buffer for inode hash"
authorDenis Vlasenko <vda.linux@googlemail.com>
Wed, 14 Mar 2007 22:06:57 +0000 (22:06 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Wed, 14 Mar 2007 22:06:57 +0000 (22:06 -0000)
coreutils/du.c

index eceb646d1fea0e3e9cf039cffff581a14a87c8e2..e5fe5ffe2d1272756acc62dfd87813598b5fed0e 100644 (file)
@@ -101,7 +101,7 @@ static long du(const char * const filename)
 
        if (statbuf.st_nlink > count_hardlinks) {
                /* Add files/directories with links only once */
-               if (is_in_ino_dev_hashtable(&statbuf, NULL)) {
+               if (is_in_ino_dev_hashtable(&statbuf)) {
                        return 0;
                }
                add_to_ino_dev_hashtable(&statbuf, NULL);