mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-01-08 21:33:57 +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
1 changed files with 2 additions and 0 deletions
|
@ -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 a new issue