summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2010-01-30 19:06:34 +0000
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2010-01-30 19:15:15 +0000
commit29c509a7b82579eb055a37f55e2110e20dd7e3b9 (patch)
tree10eccb6fc7c8f02f173c1c2b64f3fe69d1451d2e
parent5aae2740b4378704dbd1414b3a0acc9e45fd98a1 (diff)
rdtdepay: unref input buffer when done
Fixes memory leak, see #608533.
-rw-r--r--gst/realmedia/rdtdepay.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gst/realmedia/rdtdepay.c b/gst/realmedia/rdtdepay.c
index e96c765a..76793bc1 100644
--- a/gst/realmedia/rdtdepay.c
+++ b/gst/realmedia/rdtdepay.c
@@ -457,2 +457,4 @@ gst_rdt_depay_chain (GstPad * pad, GstBuffer * buf)
+ gst_buffer_unref (buf);
+
return ret;