Commit 968e2521 authored by Alexander Yaworsky's avatar Alexander Yaworsky Committed by Alexandre Julliard

StartService must pass full command line to service program.

parent 009ae91f
......@@ -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 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment