mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
WARNS=6 chocked on unitialized variable.
This commit is contained in:
parent
d94f2a68f8
commit
b2eeeae049
1 changed files with 1 additions and 1 deletions
|
|
@ -140,7 +140,7 @@ parallel(char **argv)
|
|||
LIST *head, *tmp;
|
||||
int opencnt, output;
|
||||
|
||||
for (cnt = 0, head = NULL; (p = *argv); ++argv, ++cnt) {
|
||||
for (cnt = 0, head = tmp = NULL; (p = *argv); ++argv, ++cnt) {
|
||||
if ((lp = malloc(sizeof(LIST))) == NULL)
|
||||
err(1, NULL);
|
||||
if (p[0] == '-' && !p[1])
|
||||
|
|
|
|||
Loading…
Reference in a new issue