Commit 8ae87c7f authored by Alexandre Julliard's avatar Alexandre Julliard

services: Use the correct invalid handle value for the control pipe.

parent 29d8c366
...@@ -827,7 +827,7 @@ DWORD svcctl_ControlService( ...@@ -827,7 +827,7 @@ DWORD svcctl_ControlService(
if (dwControl == SERVICE_CONTROL_STOP) if (dwControl == SERVICE_CONTROL_STOP)
{ {
service->service_entry->control_mutex = NULL; service->service_entry->control_mutex = NULL;
service->service_entry->control_pipe = NULL; service->service_entry->control_pipe = INVALID_HANDLE_VALUE;
} }
service_unlock(service->service_entry); service_unlock(service->service_entry);
......
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