mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-25 15:06:14 +01:00
networkaddress: Fix userinfo parsing in uris
The code that is checking the userinfo part was accidentally given a pointer to the end of the userinfo, so it was not checking the right portion of the string at all.
This commit is contained in:
parent
2a1ea40920
commit
5632e9fc9c
@ -475,15 +475,15 @@ _g_uri_parse_authority (const char *uri,
|
|||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
start += 2;
|
start += 2;
|
||||||
p = strchr (start, '@');
|
|
||||||
|
|
||||||
if (p != NULL)
|
if (strchr (start, '@') != NULL)
|
||||||
{
|
{
|
||||||
/* Decode userinfo:
|
/* Decode userinfo:
|
||||||
* userinfo = *( unreserved / pct-encoded / sub-delims / ":" )
|
* userinfo = *( unreserved / pct-encoded / sub-delims / ":" )
|
||||||
* unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
|
* unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
|
||||||
* pct-encoded = "%" HEXDIG HEXDIG
|
* pct-encoded = "%" HEXDIG HEXDIG
|
||||||
*/
|
*/
|
||||||
|
p = start;
|
||||||
while (1)
|
while (1)
|
||||||
{
|
{
|
||||||
c = *p++;
|
c = *p++;
|
||||||
|
Loading…
Reference in New Issue
Block a user