mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
aggregator: Unref the taglist in GstAggregator::stop()
This commit is contained in:
parent
b0ade1a317
commit
b3cd526347
1 changed files with 4 additions and 0 deletions
|
@ -728,6 +728,10 @@ _stop (GstAggregator * agg)
|
||||||
gst_aggregator_iterate_sinkpads (agg,
|
gst_aggregator_iterate_sinkpads (agg,
|
||||||
(GstAggregatorPadForeachFunc) _flush_pad, NULL);
|
(GstAggregatorPadForeachFunc) _flush_pad, NULL);
|
||||||
|
|
||||||
|
if (agg->priv->tags)
|
||||||
|
gst_tag_list_unref (agg->priv->tags);
|
||||||
|
agg->priv->tags = NULL;
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue