From 8ae87c7f0ec59fb82f6e4cd5558581ca7fc24a11 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Mon, 5 May 2008 13:00:49 +0200 Subject: [PATCH] services: Use the correct invalid handle value for the control pipe. --- programs/services/rpc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/services/rpc.c b/programs/services/rpc.c index 3f6ee40138b..baeab196abd 100644 --- a/programs/services/rpc.c +++ b/programs/services/rpc.c @@ -827,7 +827,7 @@ DWORD svcctl_ControlService( if (dwControl == SERVICE_CONTROL_STOP) { 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); -- 2.11.4.GIT