Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
mpegts_mux_unsubscribe_by_name: fixed nasty bug - used another link ptr
  • Loading branch information
perexg committed Apr 24, 2015
1 parent 3f4c630 commit 2f2d7ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input/mpegts/mpegts_mux.c
Expand Up @@ -1181,7 +1181,7 @@ mpegts_mux_unsubscribe_by_name

s = LIST_FIRST(&mm->mm_raw_subs);
while (s) {
n = LIST_NEXT(s, ths_global_link);
n = LIST_NEXT(s, ths_mux_link);
t = s->ths_service;
if (t && t->s_type == STYPE_RAW && !strcmp(s->ths_title, name))
subscription_unsubscribe(s, 0);
Expand Down

0 comments on commit 2f2d7ce

Please sign in to comment.