Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
subscriptions: add missing list remove from the mux raw subscriptions
  • Loading branch information
perexg committed Nov 7, 2015
1 parent a27b0af commit 7b48559
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/subscriptions.c
Expand Up @@ -602,8 +602,10 @@ subscription_unsubscribe(th_subscription_t *s, int quiet)
}

#if ENABLE_MPEGTS
if (raw && t == raw)
if (raw && t == raw) {
LIST_REMOVE(s, ths_mux_link);
service_remove_raw(raw);
}
#endif

streaming_msg_free(s->ths_start_message);
Expand Down

0 comments on commit 7b48559

Please sign in to comment.