瀏覽代碼

Correct CloseHandle() call.

Closing a service handle is done with CloseHandle() not
CloseServiceHandle().
Iain Patterson 11 年之前
父節點
當前提交
4e9901855c
共有 1 個文件被更改,包括 1 次插入1 次删除
  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);