Commit 727df7a2 authored by Yann Droneaud's avatar Yann Droneaud Committed by Alexandre Julliard

cmd: Fixed uninitialised field in WCMD_addCommand() (Valgrind).

parent dfa200d1
...@@ -1636,6 +1636,8 @@ static void WCMD_addCommand(WCHAR *command, int *commandLen, ...@@ -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 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment