dvb_psi: fix sdt parser (when tableid == 0x46 and mux is available), fixes #2586

This commit is contained in:
Jaroslav Kysela 2015-01-03 21:30:57 +01:00
parent fdbc68abf2
commit c4089cc7a3

View file

@ -1560,7 +1560,8 @@ dvb_sdt_callback
LIST_FOREACH(mm, &mn->mn_muxes, mm_network_link)
if (mm->mm_onid == onid && mm->mm_tsid == tsid)
break;
goto done;
if (!mm)
goto done;
}
/* Service loop */