If CAID == 0, don't even consider to descramble transport

This commit is contained in:
Andreas Öman 2008-08-25 19:44:05 +00:00
parent 351ff35274
commit d52414e3e9

2
cwc.c
View file

@ -758,6 +758,8 @@ cwc_transport_start(th_transport_t *t)
th_stream_t *st;
TAILQ_FOREACH(cwc, &cwcs, cwc_link) {
if(cwc->cwc_caid == 0)
continue;
LIST_FOREACH(st, &t->tht_streams, st_link)
if(st->st_caid == cwc->cwc_caid)