Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
dvb_psi: fix sdt parser (when tableid == 0x46 and mux is available), …
…fixes #2586
  • Loading branch information
perexg committed Jan 3, 2015
1 parent fdbc68a commit c4089cc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/input/mpegts/dvb_psi.c
Expand Up @@ -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 */
Expand Down

0 comments on commit c4089cc

Please sign in to comment.