]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(main): Free the hash table, too.
authorJim Meyering <jim@meyering.net>
Tue, 23 Mar 2004 16:32:11 +0000 (16:32 +0000)
committerJim Meyering <jim@meyering.net>
Tue, 23 Mar 2004 16:32:11 +0000 (16:32 +0000)
src/du.c

index 9c5a4e62f068a5372b16d4454ce54852c3a42402..1948d841612ffd54a9b0e62edb2457c62fe71962 100644 (file)
--- a/src/du.c
+++ b/src/du.c
@@ -806,5 +806,7 @@ main (int argc, char **argv)
   if (files_from)
     readtokens0_free (&tok);
 
+  hash_free (htab);
+
   exit (fail || G_fail ? EXIT_FAILURE : EXIT_SUCCESS);
 }