diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2002-05-24 11:03:05 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2002-05-24 11:03:05 +0000 |
commit | 234bc4e7120fda7d8918511b82ba6fd081bd3513 (patch) | |
tree | 8782b10951e2280b0868dd92d204e1f5fb8dcf10 /uri.c | |
parent | a287897413624c14e7a0484a9a36eee81f47f024 (diff) | |
download | libxml2-234bc4e7120fda7d8918511b82ba6fd081bd3513.tar.gz |
fixing bug #82848 Daniel
* uri.c: fixing bug #82848
Daniel
Diffstat (limited to 'uri.c')
-rw-r--r-- | uri.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |