mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-04 22:48:54 +00:00
rtspconnection: make sure not to dereference NULL username or password
Fixes #610268.
This commit is contained in:
parent
5685e0a4b7
commit
a8f51d61f7
1 changed files with 5 additions and 1 deletions
|
@ -946,6 +946,9 @@ add_auth_header (GstRTSPConnection * conn, GstRTSPMessage * message)
|
|||
gchar *user_pass64;
|
||||
gchar *auth_string;
|
||||
|
||||
if (conn->username == NULL || conn->passwd == NULL)
|
||||
break;
|
||||
|
||||
user_pass = g_strdup_printf ("%s:%s", conn->username, conn->passwd);
|
||||
user_pass64 = g_base64_encode ((guchar *) user_pass, strlen (user_pass));
|
||||
auth_string = g_strdup_printf ("Basic %s", user_pass64);
|
||||
|
@ -967,7 +970,8 @@ add_auth_header (GstRTSPConnection * conn, GstRTSPMessage * message)
|
|||
const gchar *method;
|
||||
|
||||
/* we need to have some params set */
|
||||
if (conn->auth_params == NULL)
|
||||
if (conn->auth_params == NULL || conn->username == NULL ||
|
||||
conn->passwd == NULL)
|
||||
break;
|
||||
|
||||
/* we need the realm and nonce */
|
||||
|
|
Loading…
Reference in a new issue