From: Jim Meyering Date: Wed, 24 Oct 2001 07:38:26 +0000 (+0000) Subject: (main): Free hash table storage. X-Git-Tag: FILEUTILS-4_1_1~67 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1e2d216c9ef680b236871669a114a36184bf1474;p=thirdparty%2Fcoreutils.git (main): Free hash table storage. --- diff --git a/src/cp.c b/src/cp.c index 4d0d73fd99..0be19fba65 100644 --- a/src/cp.c +++ b/src/cp.c @@ -1030,5 +1030,7 @@ main (int argc, char **argv) exit_status |= do_copy (argc - optind, argv + optind, target_directory, &x); + forget_all (); + exit (exit_status); }