Commit f3d95f70 authored by Max Kellermann's avatar Max Kellermann

rtsp_client: free attribute "kd" in _close()

Fix yet another memory leak.
parent 57526067
......@@ -265,6 +265,7 @@ void
rtspcl_close(struct rtspcl_data *rtspcld)
{
rtspcl_disconnect(rtspcld);
free_kd(rtspcld->kd);
rtspcl_remove_all_exthds(rtspcld);
g_free(rtspcld->session);
g_free(rtspcld);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment