From 65f8e72b409d4ed5326354412e627ea5f02c9b84 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Sat, 11 Mar 2017 12:44:04 -0800 Subject: [PATCH] SCP: Fix uninitialized variable referenced in help (COVERITY) --- scp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scp.c b/scp.c index 392f2728..38d1f568 100644 --- a/scp.c +++ b/scp.c @@ -11554,7 +11554,7 @@ return newp; static void displayMagicTopic (FILE *st, DEVICE *dptr, TOPIC *topic) { char tbuf[CBUFSIZE]; -size_t i, skiplines; +size_t i, skiplines = 0; #ifdef _WIN32 FILE *tmp; char *tmpnam;