mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-26 05:56:14 +01:00
guri: Fix user passed to g_uri_split_with_user() not being NULL'd
This commit is contained in:
parent
47488cc1a0
commit
8b319a687b
@ -696,6 +696,8 @@ g_uri_split_internal (const gchar *uri_string,
|
|||||||
*scheme = NULL;
|
*scheme = NULL;
|
||||||
if (userinfo)
|
if (userinfo)
|
||||||
*userinfo = NULL;
|
*userinfo = NULL;
|
||||||
|
if (user)
|
||||||
|
*user = NULL;
|
||||||
if (password)
|
if (password)
|
||||||
*password = NULL;
|
*password = NULL;
|
||||||
if (auth_params)
|
if (auth_params)
|
||||||
|
Loading…
Reference in New Issue
Block a user