Fixed dead store warning.

This commit is contained in:
Armin Novak 2017-11-14 13:55:24 +01:00
parent 3baba6f9c0
commit 44dfaf7841
1 changed files with 1 additions and 3 deletions

View File

@ -96,7 +96,7 @@ LPSTR* CommandLineToArgvA(LPCSTR lpCmdLine, int* pNumArgs)
char* pEnd;
char* buffer;
char* pOutput;
int numArgs;
int numArgs = 0;
LPSTR* pArgs;
int maxNumArgs;
int maxBufferSize;
@ -111,7 +111,6 @@ LPSTR* CommandLineToArgvA(LPCSTR lpCmdLine, int* pNumArgs)
return NULL;
pArgs = NULL;
numArgs = 0;
lpEscapedCmdLine = NULL;
cmdLineLength = (int) strlen(lpCmdLine);
lpEscapedChars = (BOOL*) calloc(cmdLineLength + 1, sizeof(BOOL));
@ -204,7 +203,6 @@ LPSTR* CommandLineToArgvA(LPCSTR lpCmdLine, int* pNumArgs)
pArgs = (LPSTR*) buffer;
pOutput = (char*) &buffer[maxNumArgs * (sizeof(char*))];
numArgs = 0;
p = (char*) lpCmdLine;
while (p < lpCmdLine + cmdLineLength)