mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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:
parent
e760e292ae
commit
07410fe461
1 changed files with 1 additions and 0 deletions
|
|
@ -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] == '$') {
|
||||
|
|
|
|||
Loading…
Reference in a new issue