summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2011-01-20 13:41:33 +0000
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2011-01-20 13:46:44 +0000
commit08855b45b6fddd4f675191f1ebec012917fb1664 (patch)
tree7f75243d15e83922f9c5fdc75fe4295b76768f3d
parent6d545e29add17f1c02ee4fe5623409ed63369c17 (diff)
rtspsrc: don't leak url string
https://bugzilla.gnome.org/show_bug.cgi?id=640064
-rw-r--r--gst/rtsp/gstrtspsrc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gst/rtsp/gstrtspsrc.c b/gst/rtsp/gstrtspsrc.c
index a507d4e74..e4ec10976 100644
--- a/gst/rtsp/gstrtspsrc.c
+++ b/gst/rtsp/gstrtspsrc.c
@@ -528,6 +528,7 @@ gst_rtspsrc_finalize (GObject * object)
gst_rtsp_ext_list_free (rtspsrc->extensions);
g_free (rtspsrc->conninfo.location);
gst_rtsp_url_free (rtspsrc->conninfo.url);
+ g_free (rtspsrc->conninfo.url_str);
g_free (rtspsrc->user_id);
g_free (rtspsrc->user_pw);