[LIBXML2] Update to version 2.10.2. CORE-17766

This commit is contained in:
Thomas Faber 2022-11-20 10:42:25 -05:00
parent 0d5a4166a4
commit 1dbad942d8
No known key found for this signature in database
GPG key ID: 076E7C3D44720826
5 changed files with 28 additions and 9 deletions

View file

@ -10503,7 +10503,7 @@ xmlXPathCompFilterExpr(xmlXPathParserContextPtr ctxt) {
static xmlChar *
xmlXPathScanName(xmlXPathParserContextPtr ctxt) {
int len = 0, l;
int l;
int c;
const xmlChar *cur;
xmlChar *ret;
@ -10523,7 +10523,6 @@ xmlXPathScanName(xmlXPathParserContextPtr ctxt) {
(c == '_') || (c == ':') ||
(IS_COMBINING(c)) ||
(IS_EXTENDER(c)))) {
len += l;
NEXTL(l);
c = CUR_CHAR(l);
}