Missed the first character of every argument in CommandLineToArgv.
This commit is contained in:
parent
aaaee1be84
commit
ce1dc56202
|
@ -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++;
|
||||
|
|
Loading…
Reference in New Issue