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://review.tizen.org/git/?a=commitdiff_plain;h=a2e185c904c677c2d3eebcc8dd8894ec140f7ff0;p=platform%2Fupstream%2Fcoreutils.git (cp_option_init): Initialize new member. --- diff --git a/src/install.c b/src/install.c index 9605bd8..35c9d0b 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 1266adb..5d1ebe1 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. */