mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-24 11:12:11 +01:00
Merge branch 'tingping/fix-uri-not-nulling' into 'master'
guri: Fix user passed to g_uri_split_with_user() not being NULL'd See merge request GNOME/glib!1639
This commit is contained in:
commit
6f6462ce00
@ -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…
x
Reference in New Issue
Block a user