Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
mpegts service: do not touch multiplex for raw services (deferred des…
…troy)
  • Loading branch information
perexg committed Mar 6, 2016
1 parent 9b444a6 commit 8ea81ab
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/input/mpegts/mpegts_service.c
Expand Up @@ -663,9 +663,10 @@ void
mpegts_service_delete ( service_t *t, int delconf )
{
mpegts_service_t *ms = (mpegts_service_t*)t, *mms;
mpegts_mux_t *mm = ms->s_dvb_mux;
mpegts_mux_t *mm = t->s_type == STYPE_STD ? ms->s_dvb_mux : NULL;

idnode_changed(&mm->mm_id);
if (mm)
idnode_changed(&mm->mm_id);

/* Free memory */
if (t->s_type == STYPE_STD)
Expand Down

0 comments on commit 8ea81ab

Please sign in to comment.