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
This commit is contained in:
Ed Maste 2016-08-15 11:54:39 +00:00
parent e760e292ae
commit 07410fe461
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=304151

View file

@ -251,6 +251,7 @@ create_elf_from_srec(struct elfcopy *ecp, int ifd)
sec_index = 1; sec_index = 1;
sec_addr = entry = 0; sec_addr = entry = 0;
while (fgets(line, _LINE_BUFSZ, ifp) != NULL) { while (fgets(line, _LINE_BUFSZ, ifp) != NULL) {
sz = 0; /* Silence GCC 5.3 unintialized variable warning */
if (line[0] == '\r' || line[0] == '\n') if (line[0] == '\r' || line[0] == '\n')
continue; continue;
if (line[0] == '$' && line[1] == '$') { if (line[0] == '$' && line[1] == '$') {