mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
html: Fix check for partial named character references
Digits are allowed after the first character.
This commit is contained in:
parent
f68c70d298
commit
b8234e8c73
@ -3229,7 +3229,9 @@ htmlParseCharData(htmlParserCtxtPtr ctxt, int partial) {
|
|||||||
* ∳ has 33 bytes.
|
* ∳ has 33 bytes.
|
||||||
*/
|
*/
|
||||||
for (i = 1; i < avail; i++) {
|
for (i = 1; i < avail; i++) {
|
||||||
if ((i >= 32) || !IS_ASCII_LETTER(in[i])) {
|
if ((i >= 32) ||
|
||||||
|
(!IS_ASCII_LETTER(in[i]) &&
|
||||||
|
((i < 2) || !IS_ASCII_DIGIT(in[i])))) {
|
||||||
terminated = 1;
|
terminated = 1;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user