cmd: Fixed uninitialised field in WCMD_addCommand() (Valgrind).
This commit is contained in:
parent
dfa200d1e8
commit
727df7a2ef
|
@ -1636,6 +1636,8 @@ static void WCMD_addCommand(WCHAR *command, int *commandLen,
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
thisEntry->command = NULL;
|
thisEntry->command = NULL;
|
||||||
|
thisEntry->redirects = NULL;
|
||||||
|
thisEntry->pipeFile[0] = 0x00;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Fill in other fields */
|
/* Fill in other fields */
|
||||||
|
|
Loading…
Reference in New Issue