Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
mpegts: table dispatch - a quick fix for the previous patch
  • Loading branch information
perexg committed Jul 13, 2014
1 parent adeafeb commit dcbf2cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input/mpegts/mpegts_input.c
Expand Up @@ -550,7 +550,7 @@ mpegts_input_table_dispatch ( mpegts_mux_t *mm, const uint8_t *tsb )
/* Collate - tables may be removed during callbacks */
pthread_mutex_lock(&mm->mm_tables_lock);
i = mm->mm_num_tables;
vec = alloca(len * sizeof(mpegts_table_t *));
vec = alloca(i * sizeof(mpegts_table_t *));
LIST_FOREACH(mt, &mm->mm_tables, mt_link) {
if (mt->mt_destroyed || !mt->mt_subscribed)
continue;
Expand Down

0 comments on commit dcbf2cf

Please sign in to comment.