[host] windows: avoid leaking process and thread handles

The handles in PROCESS_INFORMATION must be closed if not used, or they
will leak.
This commit is contained in:
Quantum 2021-01-14 17:38:02 -05:00 committed by Geoffrey McRae
parent 25d6d88adb
commit 65009dcedc

View File

@ -353,6 +353,8 @@ void Launch(void)
goto fail_exe;
}
CloseHandle(pi.hProcess);
CloseHandle(pi.hThread);
service.processId = pi.dwProcessId;
service.running = true;