1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-02-01 17:47:01 +03:00

fixing bug #82848 Daniel

* uri.c: fixing bug #82848
Daniel
This commit is contained in:
Daniel Veillard 2002-05-24 11:03:05 +00:00
parent a287897413
commit 234bc4e712
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Fri May 24 13:03:24 CEST 2002 Daniel Veillard <daniel@veillard.com>
* uri.c: fixing bug #82848
Fri May 24 09:54:49 CEST 2002 Daniel Veillard <daniel@veillard.com>
* result/catalogs/mycatalog.full: Aleksey's commit changed the

2
uri.c
View File

@ -1388,7 +1388,7 @@ xmlParseURIPathSegments(xmlURIPtr uri, const char **str, int slash)
do {
while (IS_PCHAR(cur) || ((uri->cleanup) && (IS_UNWISE(cur))))
NEXT(cur);
if (*cur == ';') {
while (*cur == ';') {
cur++;
while (IS_PCHAR(cur) || ((uri->cleanup) && (IS_UNWISE(cur))))
NEXT(cur);