mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 00:28:20 +00:00
[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:
parent
25d6d88adb
commit
65009dcedc
@ -353,6 +353,8 @@ void Launch(void)
|
||||
goto fail_exe;
|
||||
}
|
||||
|
||||
CloseHandle(pi.hProcess);
|
||||
CloseHandle(pi.hThread);
|
||||
service.processId = pi.dwProcessId;
|
||||
service.running = true;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user