mirror of
https://github.com/reactos/reactos.git
synced 2026-05-30 23:33:24 +08:00
[ADVAPI32] Stop the service dispatcher thread only if a SERVICE_CONTROL_STOP command was sent
This commit is contained in:
@@ -602,9 +602,10 @@ ScServiceDispatcher(HANDLE hPipe,
|
||||
lpServiceName = (LPWSTR)((PBYTE)ControlPacket + ControlPacket->dwServiceNameOffset);
|
||||
TRACE("Service: %S\n", lpServiceName);
|
||||
|
||||
if (lpServiceName[0] == UNICODE_NULL)
|
||||
if ((ControlPacket->dwControl == SERVICE_CONTROL_STOP) &&
|
||||
(lpServiceName[0] == UNICODE_NULL))
|
||||
{
|
||||
ERR("Stop dispatcher thread\n");
|
||||
TRACE("Stop dispatcher thread\n");
|
||||
bRunning = FALSE;
|
||||
dwError = ERROR_SUCCESS;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user