aboutsummaryrefslogtreecommitdiff
path: root/contrib/elftoolchain
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2016-08-15 11:54:39 +0000
committerEd Maste <emaste@FreeBSD.org>2016-08-15 11:54:39 +0000
commit07410fe461f461bccb0d1da02baf482484d85ae8 (patch)
tree13d1441c0dd57d99a207661d498d30ed551155cf /contrib/elftoolchain
parente760e292ae8fb467c034ee73935e257a740a0bd8 (diff)
downloadsrc-07410fe461f461bccb0d1da02baf482484d85ae8.tar.gz
src-07410fe461f461bccb0d1da02baf482484d85ae8.zip
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
Notes
Notes: svn path=/head/; revision=304151
Diffstat (limited to 'contrib/elftoolchain')
-rw-r--r--contrib/elftoolchain/elfcopy/ascii.c1
1 files changed, 1 insertions, 0 deletions
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] == '$') {