From: Eric Andersen Date: Tue, 21 Aug 2001 23:36:32 +0000 (-0000) Subject: dfp might be used uninitialized. NULL it. X-Git-Tag: 0_60_1~11 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=75220b55ffabfc93512a380d3a90fe21333a6ff9;p=oweals%2Fbusybox.git dfp might be used uninitialized. NULL it. --- 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) status = -1; } } else if (S_ISREG(source_stat.st_mode)) { - FILE *sfp, *dfp; + FILE *sfp, *dfp=NULL; if (dest_exists) { if (flags & FILEUTILS_INTERACTIVE) {