libs/gst/base/gstcollectpads.c: unref data at the end when we are done with the pad.

Original commit message from CVS:
* libs/gst/base/gstcollectpads.c: (gst_collect_pads_remove_pad):
unref data at the end when we are done with the pad.
This commit is contained in:
Wim Taymans 2007-01-09 12:34:45 +00:00
parent 702fbf77e9
commit 04019f4083
2 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2007-01-09 Wim Taymans <wim@fluendo.com>
* libs/gst/base/gstcollectpads.c: (gst_collect_pads_remove_pad):
unref data at the end when we are done with the pad.
2007-01-08 Tim-Philipp Müller <tim at centricular dot net>
* docs/gst/gstreamer-sections.txt:

View file

@ -347,9 +347,6 @@ gst_collect_pads_remove_pad (GstCollectPads * pads, GstPad * pad)
g_slist_delete_link (pads->abidata.ABI.pad_list, list);
pads->abidata.ABI.pad_cookie++;
/* clean and free the collect data */
unref_data (data);
/* signal waiters because something changed */
GST_COLLECT_PADS_BROADCAST (pads);
@ -357,6 +354,9 @@ gst_collect_pads_remove_pad (GstCollectPads * pads, GstPad * pad)
if (!pads->started)
gst_pad_set_active (pad, FALSE);
/* clean and free the collect data */
unref_data (data);
GST_COLLECT_PADS_PAD_UNLOCK (pads);
return TRUE;