cscript: Correct forming cmd for forwarding to wscript.

This commit is contained in:
Putin Evgeny 2013-01-28 11:45:02 +04:00 committed by Alexandre Julliard
parent ffa7d16731
commit cc796b9569
1 changed files with 2 additions and 2 deletions

View File

@ -44,8 +44,8 @@ int WINAPI wWinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPWSTR cmdline, int cm
GetSystemDirectoryW(app, MAX_PATH);
strcatW(app, wscriptW);
strcpyW(cmd, app);
strcatW(app, parbW);
strcatW(app, cmdline);
strcatW(cmd, parbW);
strcatW(cmd, cmdline);
if (!CreateProcessW(app, cmd, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi)) return 1;
WaitForSingleObject( pi.hProcess, INFINITE );