mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +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);
|
||||
}
|
||||
if ((*p)->authorization)
|
||||
g_free ((*p)->authorization);
|
||||
g_free (*p);
|
||||
p++;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue