Procházet zdrojové kódy

Correct CloseHandle() call.

Closing a service handle is done with CloseHandle() not
CloseServiceHandle().
Iain Patterson před 11 roky
rodič
revize
4e9901855c
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      service.cpp

+ 1 - 1
service.cpp

@@ -528,7 +528,7 @@ void cleanup_nssm_service(nssm_service_t *service) {
   }
   if (service->env) HeapFree(GetProcessHeap(), 0, service->env);
   if (service->env_extra) HeapFree(GetProcessHeap(), 0, service->env_extra);
-  if (service->handle) CloseServiceHandle(service->handle);
+  if (service->handle) CloseHandle(service->handle);
   if (service->process_handle) CloseHandle(service->process_handle);
   if (service->wait_handle) UnregisterWait(service->process_handle);
   if (service->throttle_section_initialised) DeleteCriticalSection(&service->throttle_section);