From: Jim Meyering Date: Tue, 23 Mar 2004 16:32:11 +0000 (+0000) Subject: (main): Free the hash table, too. X-Git-Tag: v5.3.0~1968 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=47ea391c68e77b3d3a1c4a266df86493a40ba517;p=thirdparty%2Fcoreutils.git (main): Free the hash table, too. --- diff --git a/src/du.c b/src/du.c index 9c5a4e62f0..1948d84161 100644 --- 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); }