Missed the first character of every argument in CommandLineToArgv.

This commit is contained in:
Marcus Meissner 2000-08-16 12:43:17 +00:00 committed by Alexandre Julliard
parent aaaee1be84
commit ce1dc56202
1 changed files with 1 additions and 4 deletions

View File

@ -63,10 +63,7 @@ LPWSTR* WINAPI CommandLineToArgvW(LPWSTR cmdline,LPDWORD numargs)
*s=0x0020;
while (*s && *s==0x0020)
s++;
if (*s)
t=s+1;
else
t=s;
t=s;
continue;
}
s++;