Don't normalize namespace URIs in XPointer xmlns() scheme

Namespace URIs should be compared without escaping or unescaping:

https://www.w3.org/TR/REC-xml-names/#NSNameComparison

Fixes #289.
This commit is contained in:
Nick Wellnhofer 2022-02-04 14:00:09 +01:00
parent 1c7d91abe4
commit 5408c10c37
4 changed files with 12 additions and 25 deletions

View File

@ -0,0 +1,7 @@
========================
Expression: xmlns(b=abc://d/e:f) xpointer(/b:rootB)
Object is a Node Set :
Set contains 1 nodes:
1 ELEMENT rootB
default namespace href=abc://d/e:f

3
test/XPath/docs/issue289 Normal file
View File

@ -0,0 +1,3 @@
<?xml version="1.0"?>
<rootB xmlns="abc://d/e:f">
</rootB>

View File

@ -0,0 +1 @@
xmlns(b=abc://d/e:f) xpointer(/b:rootB)

View File

@ -1040,8 +1040,6 @@ xmlXPtrEvalXPtrPart(xmlXPathParserContextPtr ctxt, xmlChar *name) {
const xmlChar *oldBase = ctxt->base;
const xmlChar *oldCur = ctxt->cur;
xmlChar *prefix;
xmlChar *URI;
xmlURIPtr value;
ctxt->cur = ctxt->base = buffer;
prefix = xmlXPathParseNCName(ctxt);
@ -1063,32 +1061,10 @@ xmlXPtrEvalXPtrPart(xmlXPathParserContextPtr ctxt, xmlChar *name) {
}
NEXT;
SKIP_BLANKS;
/* @@ check escaping in the XPointer WD */
value = xmlParseURI((const char *)ctxt->cur);
if (value == NULL) {
ctxt->base = oldBase;
ctxt->cur = oldCur;
xmlFree(prefix);
xmlFree(buffer);
xmlFree(name);
XP_ERROR(XPTR_SYNTAX_ERROR);
}
URI = xmlSaveUri(value);
xmlFreeURI(value);
if (URI == NULL) {
ctxt->base = oldBase;
ctxt->cur = oldCur;
xmlFree(prefix);
xmlFree(buffer);
xmlFree(name);
XP_ERROR(XPATH_MEMORY_ERROR);
}
xmlXPathRegisterNs(ctxt->context, prefix, URI);
xmlXPathRegisterNs(ctxt->context, prefix, ctxt->cur);
ctxt->base = oldBase;
ctxt->cur = oldCur;
xmlFree(URI);
xmlFree(prefix);
#endif /* XPTR_XMLNS_SCHEME */
} else {