From: Hyunil Date: Mon, 28 Jan 2019 06:07:48 +0000 (+0900) Subject: fix SVACE bug about memory free X-Git-Tag: submit/tizen/20190128.071630^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3d9a2153f87d7948ba46a26118c8f6896746a193;p=platform%2Fupstream%2Fgst-plugins-base.git fix SVACE bug about memory free Change-Id: Ife67f029f779bf4b20f192dd55fae9eed24669b2 Signed-off-by: Hyunil --- diff --git a/gst-libs/gst/rtsp/gstrtspconnection.c b/gst-libs/gst/rtsp/gstrtspconnection.c index 484f2c4..1d2d08f 100644 --- a/gst-libs/gst/rtsp/gstrtspconnection.c +++ b/gst-libs/gst/rtsp/gstrtspconnection.c @@ -859,7 +859,8 @@ remote_address_failed: GST_ERROR ("failed to resolve address: %s", error->message); g_object_unref (connection); g_clear_error (&error); - return GST_RTSP_ERROR; + res = GST_RTSP_ERROR; + goto exit; } }