aboutsummaryrefslogtreecommitdiffstats
path: root/uri.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2002-05-24 11:03:05 +0000
committerDaniel Veillard <veillard@src.gnome.org>2002-05-24 11:03:05 +0000
commit234bc4e7120fda7d8918511b82ba6fd081bd3513 (patch)
tree8782b10951e2280b0868dd92d204e1f5fb8dcf10 /uri.c
parenta287897413624c14e7a0484a9a36eee81f47f024 (diff)
downloadandroid_external_libxml2-234bc4e7120fda7d8918511b82ba6fd081bd3513.tar.gz
android_external_libxml2-234bc4e7120fda7d8918511b82ba6fd081bd3513.tar.bz2
android_external_libxml2-234bc4e7120fda7d8918511b82ba6fd081bd3513.zip
fixing bug #82848 Daniel
* uri.c: fixing bug #82848 Daniel
Diffstat (limited to 'uri.c')
-rw-r--r--uri.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/uri.c b/uri.c
index 27a6991b..b2198809 100644
--- a/uri.c
+++ b/uri.c
@@ -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);