summaryrefslogtreecommitdiffstats
path: root/gst/rtpmanager/rtpsource.c
diff options
context:
space:
mode:
authorPeter Kjellerstedt <pkj@axis.com>2008-05-09 07:41:58 +0000
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2009-08-11 02:30:35 +0100
commitb1ef03968a6d488c9ec88b70dad8fcf3301f958c (patch)
treea42f88af61e36781a429d9e620c8eecdf9a57ba2 /gst/rtpmanager/rtpsource.c
parentbddddbd409f33dfeb94bfcf14e3a01e19a6fd433 (diff)
gst/rtpmanager/rtpsource.c: Make sure to unref the caps used by RTPSource to prevent a memory leak.
Original commit message from CVS: * gst/rtpmanager/rtpsource.c: (rtp_source_finalize): Make sure to unref the caps used by RTPSource to prevent a memory leak.
Diffstat (limited to 'gst/rtpmanager/rtpsource.c')
-rw-r--r--gst/rtpmanager/rtpsource.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gst/rtpmanager/rtpsource.c b/gst/rtpmanager/rtpsource.c
index 36def461..4c351a1a 100644
--- a/gst/rtpmanager/rtpsource.c
+++ b/gst/rtpmanager/rtpsource.c
@@ -197,6 +197,8 @@ rtp_source_finalize (GObject * object)
g_free (src->bye_reason);
+ gst_caps_replace (&src->caps, NULL);
+
G_OBJECT_CLASS (rtp_source_parent_class)->finalize (object);
}