diff options
author | emaste <emaste@FreeBSD.org> | 2016-09-15 17:23:14 +0000 |
---|---|---|
committer | emaste <emaste@FreeBSD.org> | 2016-09-15 17:23:14 +0000 |
commit | af01810d64c0c75c5ef8b40d9e9d4c68cc6f2c13 (patch) | |
tree | 022a9731493a1e3075d7737c0f3480d6c6c86449 | |
parent | 2926ddb0f59ca62a19c74d5d163ab969136db2ab (diff) | |
download | FreeBSD-src-af01810d64c0c75c5ef8b40d9e9d4c68cc6f2c13.zip FreeBSD-src-af01810d64c0c75c5ef8b40d9e9d4c68cc6f2c13.tar.gz |
MFC r304151: elfcopy: silence GCC 5.3 unitialized variable warning
Although it's a false positive there is little cost to initializing it
always.
-rw-r--r-- | contrib/elftoolchain/elfcopy/ascii.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/elftoolchain/elfcopy/ascii.c b/contrib/elftoolchain/elfcopy/ascii.c index fb1edb3..747c66b 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] == '$') { |