Commit ce1dc562 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

Missed the first character of every argument in CommandLineToArgv.

parent aaaee1be
......@@ -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++;
......
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