diff options
author | Jim Meyering <jim@meyering.net> | 2001-11-22 19:48:17 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2001-11-22 19:48:17 +0000 |
commit | a2e185c904c677c2d3eebcc8dd8894ec140f7ff0 (patch) | |
tree | d5d2c7673d94dda58a5596a21ac0546151cb02af /src | |
parent | 039ff08371a99ed7c60f4bcd0d0dc282e49f348b (diff) | |
download | coreutils-a2e185c904c677c2d3eebcc8dd8894ec140f7ff0.tar.xz |
(cp_option_init): Initialize new member.
Diffstat (limited to 'src')
-rw-r--r-- | src/install.c | 1 | ||||
-rw-r--r-- | src/mv.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/install.c b/src/install.c index 9605bd86b..35c9d0b0d 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 @@ -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. */ |