From 7899b9af9fdb72a4490a101a40d1becc140c9f7e Mon Sep 17 00:00:00 2001 From: Matthew Waters Date: Sun, 15 Jun 2014 15:17:07 +1000 Subject: [PATCH] gldownload: plug a memory leak --- gst-libs/gst/gl/gstgldownload.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gst-libs/gst/gl/gstgldownload.c b/gst-libs/gst/gl/gstgldownload.c index 69bbab41b1..47e277a614 100644 --- a/gst-libs/gst/gl/gstgldownload.c +++ b/gst-libs/gst/gl/gstgldownload.c @@ -312,6 +312,7 @@ _do_download (GstGLDownload * download, guint texture_id, } gst_buffer_unref (inbuf); + gst_buffer_unref (outbuf); return ret; }