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:
Patrick Griffis 2020-09-02 22:57:40 +00:00
commit 6f6462ce00

View File

@ -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)