mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix possible uninitialized variable insert due to previous commit.
Pointy hat to: me and my absence of -Wall in my CFLAGS. MFC will happen at the same time of the earlier commit. Thanks to ru@ for spotting. Approved by: re (Ken Smith), grog@ (mentor)
This commit is contained in:
parent
17c53e4a28
commit
e06a060ed3
1 changed files with 1 additions and 1 deletions
|
|
@ -898,7 +898,7 @@ ultimate_source (name, path)
|
|||
#endif
|
||||
|
||||
#if HAVE_LIBZ > 0
|
||||
gzgets (fp, buf, BUFSIZ);
|
||||
end = gzgets (fp, buf, BUFSIZ);
|
||||
gzclose(fp);
|
||||
#else
|
||||
end = fgets (buf, BUFSIZ, fp);
|
||||
|
|
|
|||
Loading…
Reference in a new issue