projects
/
platform
/
upstream
/
gst-plugins-good.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5ed18ad
)
rtpgstpay: fix buffer leak
author
Wim Taymans
<wim.taymans@collabora.co.uk>
Tue, 26 Apr 2011 13:58:12 +0000
(15:58 +0200)
committer
Wim Taymans
<wim.taymans@collabora.co.uk>
Tue, 26 Apr 2011 13:58:12 +0000
(15:58 +0200)
gst/rtp/gstrtpgstpay.c
patch
|
blob
|
history
diff --git
a/gst/rtp/gstrtpgstpay.c
b/gst/rtp/gstrtpgstpay.c
index
f8c6ccc
..
e03817a
100644
(file)
--- a/
gst/rtp/gstrtpgstpay.c
+++ b/
gst/rtp/gstrtpgstpay.c
@@
-215,6
+215,7
@@
gst_rtp_gst_pay_handle_buffer (GstBaseRTPPayload * basepayload,
ret = gst_basertppayload_push (basepayload, outbuf);
}
gst_buffer_unmap (buffer, data, size);
+ gst_buffer_unref (buffer);
return ret;
}