From: Jim Meyering Date: Sun, 7 Oct 2001 08:40:00 +0000 (+0000) Subject: (copy_dir): Now that remember_copied copies the X-Git-Tag: FILEUTILS-4_1_1~151 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3cff443b59e8b15a4689dd1bbe890a914b6c2b62;p=thirdparty%2Fcoreutils.git (copy_dir): Now that remember_copied copies the file name, free the temporary `dst_path' allocated here. --- diff --git a/src/copy.c b/src/copy.c index 04929693b7..715edf1f38 100644 --- a/src/copy.c +++ b/src/copy.c @@ -187,10 +187,7 @@ copy_dir (const char *src_path_in, const char *dst_path_in, int new_dst, &local_copy_into_self, NULL); *copy_into_self |= local_copy_into_self; - /* Free the memory for `src_path'. The memory for `dst_path' - cannot be deallocated, since it is used to create multiple - hard links. */ - + free (dst_path); free (src_path); namep += strlen (namep) + 1;