mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 23:36:38 +00:00
rtsp: Don't leak authorization string
This commit is contained in:
parent
010b9547d3
commit
fb4856c839
1 changed files with 2 additions and 0 deletions
|
@ -1232,6 +1232,8 @@ gst_rtsp_auth_credentials_free (GstRTSPAuthCredential ** credentials)
|
||||||
}
|
}
|
||||||
g_free ((*p)->params);
|
g_free ((*p)->params);
|
||||||
}
|
}
|
||||||
|
if ((*p)->authorization)
|
||||||
|
g_free ((*p)->authorization);
|
||||||
g_free (*p);
|
g_free (*p);
|
||||||
p++;
|
p++;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue