From: Vineeth TM Date: Tue, 15 Dec 2015 23:52:12 +0000 (+0900) Subject: gdppay: Fix buffer memory leak X-Git-Tag: 1.19.3~507^2~7421 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1b2a9a9c844904840aac31e9451840b5f5c0cf80;p=platform%2Fupstream%2Fgstreamer.git gdppay: Fix buffer memory leak outbuffer being allocated is not being pushed to queue for EOS event and hence should be freed. https://bugzilla.gnome.org/show_bug.cgi?id=759519 --- diff --git a/gst/gdp/gstgdppay.c b/gst/gdp/gstgdppay.c index 8a8d593..b428462 100644 --- a/gst/gdp/gstgdppay.c +++ b/gst/gdp/gstgdppay.c @@ -577,6 +577,8 @@ gst_gdp_pay_sink_event (GstPad * pad, GstObject * parent, GstEvent * event) flowret = gst_gdp_queue_buffer (this, outbuffer); if (flowret != GST_FLOW_OK) goto push_error; + } else { + gst_buffer_unref (outbuffer); } done: