mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
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:
parent
1c7d91abe4
commit
5408c10c37
7
result/XPath/xptr/issue289base
Normal file
7
result/XPath/xptr/issue289base
Normal 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
3
test/XPath/docs/issue289
Normal file
@ -0,0 +1,3 @@
|
||||
<?xml version="1.0"?>
|
||||
<rootB xmlns="abc://d/e:f">
|
||||
</rootB>
|
1
test/XPath/xptr/issue289base
Normal file
1
test/XPath/xptr/issue289base
Normal file
@ -0,0 +1 @@
|
||||
xmlns(b=abc://d/e:f) xpointer(/b:rootB)
|
26
xpointer.c
26
xpointer.c
@ -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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user