[WSCRIPT]

- Correctly use CommandLineToArgvW. Fixes cscript crashing on start.
CORE-9439 #resolve

svn path=/trunk/; revision=67001
This commit is contained in:
Thomas Faber 2015-03-31 18:30:02 +00:00
parent 06ef60970d
commit 8c6b9e9841

View file

@ -412,11 +412,11 @@ int WINAPI wWinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPWSTR cmdline, int cm
WINE_TRACE("(%p %p %s %x)\n", hInst, hPrevInst, wine_dbgstr_w(cmdline), cmdshow);
argv = CommandLineToArgvW(cmdline, &argc);
argv = CommandLineToArgvW(GetCommandLineW(), &argc);
if(!argv)
return 1;
for(i=0; i<argc; i++) {
for(i=1; i<argc; i++) {
if(*argv[i] == '/' || *argv[i] == '-') {
if(!set_host_properties(argv[i]))
return 1;