mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-02-09 17:57:24 +03:00
Fix handling of apos in URIs
François Delyon <f.delyon@satimage.fr> pointed out a divergence between the URI code and RFC 3986, fix trivial and seems to not break regression tests
This commit is contained in:
parent
5b9dde3eed
commit
2ee91eb658
2
uri.c
2
uri.c
@ -127,7 +127,7 @@ static void xmlCleanURI(xmlURIPtr uri);
|
||||
(((*(p) == '!')) || ((*(p) == '$')) || ((*(p) == '&')) || \
|
||||
((*(p) == '(')) || ((*(p) == ')')) || ((*(p) == '*')) || \
|
||||
((*(p) == '+')) || ((*(p) == ',')) || ((*(p) == ';')) || \
|
||||
((*(p) == '=')))
|
||||
((*(p) == '=')) || ((*(p) == '\'')))
|
||||
|
||||
/*
|
||||
* gen-delims = ":" / "/" / "?" / "#" / "[" / "]" / "@"
|
||||
|
Loading…
x
Reference in New Issue
Block a user