Only in libxml2-2.4.5-mh/: result.wap.xml Only in libxml2-2.4.5-mh/: result2.wap.xml diff -bru libxml2-2.4.5/uri.c libxml2-2.4.5-mh/uri.c --- libxml2-2.4.5/uri.c Tue Jun 26 18:09:18 2001 +++ libxml2-2.4.5-mh/uri.c Mon Oct 1 21:48:34 2001 @@ -1649,14 +1649,19 @@ static int xmlParseAbsoluteURI(xmlURIPtr uri, const char **str) { int ret; + const char *cur; if (str == NULL) return(-1); + cur = *str; + ret = xmlParseURIScheme(uri, str); if (ret != 0) return(ret); - if (**str != ':') + if (**str != ':') { + *str = cur; return(1); + } (*str)++; if (**str == '/') return(xmlParseURIHierPart(uri, str));