From 07410fe461f461bccb0d1da02baf482484d85ae8 Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Mon, 15 Aug 2016 11:54:39 +0000 Subject: [PATCH] elfcopy: silence GCC 5.3 unitialized variable warning Although it's a false positive there is little cost to initializing it always. Submitted by: adrian --- contrib/elftoolchain/elfcopy/ascii.c | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/elftoolchain/elfcopy/ascii.c b/contrib/elftoolchain/elfcopy/ascii.c index fb1edb3cce46..747c66bd0c5b 100644 --- a/contrib/elftoolchain/elfcopy/ascii.c +++ b/contrib/elftoolchain/elfcopy/ascii.c @@ -251,6 +251,7 @@ create_elf_from_srec(struct elfcopy *ecp, int ifd) sec_index = 1; sec_addr = entry = 0; while (fgets(line, _LINE_BUFSZ, ifp) != NULL) { + sz = 0; /* Silence GCC 5.3 unintialized variable warning */ if (line[0] == '\r' || line[0] == '\n') continue; if (line[0] == '$' && line[1] == '$') {