mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 17:22:46 -04:00
main.c:450: warning: `targs' might be used uninitialized in this function
Spotted by: patrick@godloveya.com, naddy, -Wuninitialized This segfaulted alpha and sparc64; i386 had this magically zeroed.
This commit is contained in:
parent
98c385e7d6
commit
ef3a89cfe8
1 changed files with 1 additions and 1 deletions
|
|
@ -865,9 +865,9 @@ main(argc, argv)
|
|||
*/
|
||||
Compat_Run(targs);
|
||||
}
|
||||
Lst_Destroy(targs, NOFREE);
|
||||
}
|
||||
|
||||
Lst_Destroy(targs, NOFREE);
|
||||
Lst_Destroy(variables, NOFREE);
|
||||
Lst_Destroy(makefiles, NOFREE);
|
||||
Lst_Destroy(create, (void (*)(void *)) free);
|
||||
|
|
|
|||
Loading…
Reference in a new issue