From: Vineeth TM Date: Mon, 12 Oct 2015 02:09:30 +0000 (+0900) Subject: souphttpclientsink: Fix memory leaks during failures X-Git-Tag: 1.10.4~832 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cece69003c2d0cc535fb1df1e3579cce68df3dcc;p=platform%2Fupstream%2Fgst-plugins-good.git souphttpclientsink: Fix memory leaks during failures freeing streamheader_buffers and sent_buffers during failure cases. https://bugzilla.gnome.org/show_bug.cgi?id=755326 --- diff --git a/ext/soup/gstsouphttpclientsink.c b/ext/soup/gstsouphttpclientsink.c index e31f91f..9f1279e 100644 --- a/ext/soup/gstsouphttpclientsink.c +++ b/ext/soup/gstsouphttpclientsink.c @@ -251,6 +251,10 @@ gst_soup_http_client_sink_reset (GstSoupHttpClientSink * souphttpsink) souphttpsink->status_code = 0; souphttpsink->offset = 0; + g_list_free_full (souphttpsink->streamheader_buffers, + (GDestroyNotify) gst_buffer_unref); + g_list_free_full (souphttpsink->sent_buffers, + (GDestroyNotify) gst_buffer_unref); } static gboolean