From: Jim Meyering Date: Thu, 22 Nov 2001 19:48:17 +0000 (+0000) Subject: (cp_option_init): Initialize new member. X-Git-Tag: FILEUTILS-4_1_2~25 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=a2e185c904c677c2d3eebcc8dd8894ec140f7ff0;p=thirdparty%2Fcoreutils.git (cp_option_init): Initialize new member. --- diff --git a/src/install.c b/src/install.c index 9605bd86b1..35c9d0b0d0 100644 --- a/src/install.c +++ b/src/install.c @@ -174,6 +174,7 @@ cp_option_init (struct cp_options *x) x->verbose = 0; x->xstat = stat; x->dest_info = NULL; + x->src_info = NULL; } int diff --git a/src/mv.c b/src/mv.c index 1266adbf52..5d1ebe1766 100644 --- a/src/mv.c +++ b/src/mv.c @@ -149,6 +149,7 @@ cp_option_init (struct cp_options *x) x->verbose = 0; x->xstat = lstat; x->dest_info = NULL; + x->src_info = NULL; } /* If PATH is an existing directory, return nonzero, else 0. */