StartService must pass full command line to service program.

This commit is contained in:
Alexander Yaworsky 2004-08-26 18:10:01 +00:00 committed by Alexandre Julliard
parent 009ae91f34
commit 968e252149
1 changed files with 2 additions and 2 deletions

View File

@ -791,8 +791,8 @@ StartServiceW( SC_HANDLE hService, DWORD dwNumServiceArgs,
ZeroMemory(&startupinfo,sizeof(STARTUPINFOW));
startupinfo.cb = sizeof(STARTUPINFOW);
r = CreateProcessW(path,
NULL,
r = CreateProcessW(NULL,
path,
NULL, /* process security attribs */
NULL, /* thread security attribs */
FALSE, /* inherit handles */