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