From a2e185c904c677c2d3eebcc8dd8894ec140f7ff0 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 22 Nov 2001 19:48:17 +0000 Subject: [PATCH] (cp_option_init): Initialize new member. --- src/install.c | 1 + src/mv.c | 1 + 2 files changed, 2 insertions(+) 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. */ -- 2.7.4