Author: Evan Teran <evan.teran@gmail.com>

- Fix typo in GlobalAlloc parameters.

svn path=/trunk/; revision=29678
This commit is contained in:
Johannes Anderwald 2007-10-19 11:15:50 +00:00
parent 50fa98a4ca
commit ec0138f98f

View file

@ -97,7 +97,7 @@ LPWSTR* WINAPI CommandLineToArgvW(LPCWSTR lpCmdline, int* numargs)
/* Return the path to the executable */
DWORD len, size=16;
hargv=GlobalAlloc(size, 0);
hargv=GlobalAlloc(0, size);
argv=GlobalLock(hargv);
for (;;)
{