This commit is contained in:
nickkelsey 2020-03-03 09:03:26 -07:00
commit 64aa1606b5
2 changed files with 4 additions and 0 deletions

View file

@ -377,6 +377,9 @@ static bool hdhomerun_device_get_tuner_status_lock_is_bcast(struct hdhomerun_tun
if (strcmp(status->lock_str, "8vsb") == 0) { if (strcmp(status->lock_str, "8vsb") == 0) {
return true; return true;
} }
if (strcmp(status->lock_str, "atsc3") == 0) {
return true;
}
if (strncmp(status->lock_str, "t8", 2) == 0) { if (strncmp(status->lock_str, "t8", 2) == 0) {
return true; return true;
} }

View file

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