mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
xpath: Fix parsing of non-ASCII names
Fix a long-standing issue where QNames starting with a non-ASCII character would be rejected. This became more visible after "streaming" XPath evaluation was disabled since the latter handled non-ASCII names correctly. Fixes #818.
This commit is contained in:
parent
9201173c5a
commit
459146140a
6
result/XPath/tests/unicodesimple
Normal file
6
result/XPath/tests/unicodesimple
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
========================
|
||||||
|
Expression: /文書
|
||||||
|
Object is a Node Set :
|
||||||
|
Set contains 1 nodes:
|
||||||
|
1 ELEMENT #E6#96#87#E6#9B#B8
|
1
test/XPath/docs/unicode
Normal file
1
test/XPath/docs/unicode
Normal file
@ -0,0 +1 @@
|
|||||||
|
<文書>text1</文書>
|
1
test/XPath/tests/unicodesimple
Normal file
1
test/XPath/tests/unicodesimple
Normal file
@ -0,0 +1 @@
|
|||||||
|
/文書
|
5
xpath.c
5
xpath.c
@ -10081,8 +10081,9 @@ xmlXPathCompLocationPath(xmlXPathParserContextPtr ctxt) {
|
|||||||
} else if (CUR == '/') {
|
} else if (CUR == '/') {
|
||||||
NEXT;
|
NEXT;
|
||||||
SKIP_BLANKS;
|
SKIP_BLANKS;
|
||||||
if ((CUR != 0 ) &&
|
if ((CUR != 0) &&
|
||||||
((IS_ASCII_LETTER(CUR)) || (CUR == '_') || (CUR == '.') ||
|
((IS_ASCII_LETTER(CUR)) || (CUR >= 0x80) ||
|
||||||
|
(CUR == '_') || (CUR == '.') ||
|
||||||
(CUR == '@') || (CUR == '*')))
|
(CUR == '@') || (CUR == '*')))
|
||||||
xmlXPathCompRelativeLocationPath(ctxt);
|
xmlXPathCompRelativeLocationPath(ctxt);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user