Thread handle leak in hdhomerun_os_windows

This commit is contained in:
djp952 2019-07-08 11:11:19 -04:00
commit bac05a3a75

View file

@ -113,6 +113,7 @@ void thread_task_join(thread_task_t tid)
return;
}
if (ExitCode != STILL_ACTIVE) {
CloseHandle(tid);
return;
}
}