From: Jim Meyering Date: Thu, 22 Nov 2001 10:54:05 +0000 (+0000) Subject: (cp_option_init): Initialize new member. X-Git-Tag: TEXTUTILS-2_0_17~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8cd4321b8bd3b166bae966c3d6fe59e890d136e9;p=platform%2Fupstream%2Fcoreutils.git (cp_option_init): Initialize new member. (main): dest_info_init now takes a parameter. --- diff --git a/src/install.c b/src/install.c index 9d00f86..9605bd8 100644 --- a/src/install.c +++ b/src/install.c @@ -173,6 +173,7 @@ cp_option_init (struct cp_options *x) x->update = 0; x->verbose = 0; x->xstat = stat; + x->dest_info = NULL; } int @@ -337,7 +338,7 @@ is not a directory"), usage (1); } - dest_info_init (); + dest_info_init (&x); for (i = 0; i < n_files - 1; i++) { errors |= install_file_in_dir (file[i], dest, &x);