From 8cd4321b8bd3b166bae966c3d6fe59e890d136e9 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 22 Nov 2001 10:54:05 +0000 Subject: [PATCH] (cp_option_init): Initialize new member. (main): dest_info_init now takes a parameter. --- src/install.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/install.c b/src/install.c index 9d00f86f8..9605bd86b 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); -- 2.34.1