diff options
-rw-r--r-- | libbb/copy_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/copy_file.c b/libbb/copy_file.c index c79fbeb14..9c1bba689 100644 --- a/libbb/copy_file.c +++ b/libbb/copy_file.c | |||
@@ -131,7 +131,7 @@ int copy_file(const char *source, const char *dest, int flags) | |||
131 | status = -1; | 131 | status = -1; |
132 | } | 132 | } |
133 | } else if (S_ISREG(source_stat.st_mode)) { | 133 | } else if (S_ISREG(source_stat.st_mode)) { |
134 | FILE *sfp, *dfp; | 134 | FILE *sfp, *dfp=NULL; |
135 | 135 | ||
136 | if (dest_exists) { | 136 | if (dest_exists) { |
137 | if (flags & FILEUTILS_INTERACTIVE) { | 137 | if (flags & FILEUTILS_INTERACTIVE) { |