mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:26:10 +00:00
StartService must pass full command line to service program.
This commit is contained in:
parent
009ae91f34
commit
968e252149
1 changed files with 2 additions and 2 deletions
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue