rtspsrc: fix memory leak

In gst_rtspsrc_parse_digest_challenge(), rtspsrc does a g_strndup of the auth
header items and then passes them to gst_rtsp_connection_set_auth_param()
without freeing.

Fixes #594133
This commit is contained in:
Arnout Vandecappelle 2009-09-08 13:30:29 +02:00 committed by Wim Taymans
parent 8f3299c547
commit 19455200b1

View file

@ -3489,6 +3489,7 @@ gst_rtspsrc_parse_digest_challenge (GstRTSPConnection * conn,
value = NULL;
gst_rtsp_connection_set_auth_param (conn, item, value);
g_free (item);
}
g_slist_free (list);