summaryrefslogtreecommitdiffstats
path: root/gst/rtpmanager/gstrtpbin.c
diff options
context:
space:
mode:
authorWim Taymans <wim.taymans@gmail.com>2008-11-22 13:17:24 +0000
committerWim Taymans <wim.taymans@gmail.com>2008-11-22 13:17:24 +0000
commitffa8f53c26f308ab9ec4b60c58f7e3084b9cdd3d (patch)
treee580ca3356a5060c34b689aba214ccb6220555bc /gst/rtpmanager/gstrtpbin.c
parent7e028507ffccf1bba9a76b2327967fe26dea9bca (diff)
downloadgst-plugins-bad-ffa8f53c26f308ab9ec4b60c58f7e3084b9cdd3d.tar.gz
gst-plugins-bad-ffa8f53c26f308ab9ec4b60c58f7e3084b9cdd3d.tar.bz2
gst-plugins-bad-ffa8f53c26f308ab9ec4b60c58f7e3084b9cdd3d.zip
gst/rtpmanager/gstrtpbin.c: Also unref the target pad for unknown pads.
Original commit message from CVS: * gst/rtpmanager/gstrtpbin.c: (gst_rtp_bin_release_pad): Also unref the target pad for unknown pads.
Diffstat (limited to 'gst/rtpmanager/gstrtpbin.c')
-rw-r--r--gst/rtpmanager/gstrtpbin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/rtpmanager/gstrtpbin.c b/gst/rtpmanager/gstrtpbin.c
index 13402ea3..07e91213 100644
--- a/gst/rtpmanager/gstrtpbin.c
+++ b/gst/rtpmanager/gstrtpbin.c
@@ -2452,7 +2452,6 @@ gst_rtp_bin_release_pad (GstElement * element, GstPad * pad)
} else if (session->send_rtcp_src == target) {
remove_rtcp (rtpbin, session, pad);
}
-
GST_RTP_BIN_UNLOCK (rtpbin);
gst_object_unref (target);
@@ -2463,6 +2462,7 @@ gst_rtp_bin_release_pad (GstElement * element, GstPad * pad)
unknown_pad:
{
GST_RTP_BIN_UNLOCK (rtpbin);
+ gst_object_unref (target);
g_warning ("gstrtpbin: %s:%s is not one of our request pads",
GST_DEBUG_PAD_NAME (pad));
return;