Author: janderwald Date: Fri Oct 19 15:15:50 2007 New Revision: 29678
URL: http://svn.reactos.org/svn/reactos?rev=29678&view=rev Log: Author: Evan Teran evan.teran@gmail.com - Fix typo in GlobalAlloc parameters.
Modified: trunk/reactos/dll/win32/shell32/shell32_main.c
Modified: trunk/reactos/dll/win32/shell32/shell32_main.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/shell32_m... ============================================================================== --- trunk/reactos/dll/win32/shell32/shell32_main.c (original) +++ trunk/reactos/dll/win32/shell32/shell32_main.c Fri Oct 19 15:15:50 2007 @@ -97,7 +97,7 @@ /* Return the path to the executable */ DWORD len, size=16;
- hargv=GlobalAlloc(size, 0); + hargv=GlobalAlloc(0, size); argv=GlobalLock(hargv); for (;;) {