mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
Fix an off by one pointer access
getting out of the range of memory allocated for xpointer decoding
This commit is contained in:
parent
fc74a6f5c2
commit
d8e1faeaa9
15
xpointer.c
15
xpointer.c
@ -1007,21 +1007,14 @@ xmlXPtrEvalXPtrPart(xmlXPathParserContextPtr ctxt, xmlChar *name) {
|
||||
NEXT;
|
||||
break;
|
||||
}
|
||||
*cur++ = CUR;
|
||||
} else if (CUR == '(') {
|
||||
level++;
|
||||
*cur++ = CUR;
|
||||
} else if (CUR == '^') {
|
||||
NEXT;
|
||||
if ((CUR == ')') || (CUR == '(') || (CUR == '^')) {
|
||||
*cur++ = CUR;
|
||||
} else {
|
||||
*cur++ = '^';
|
||||
*cur++ = CUR;
|
||||
}
|
||||
} else {
|
||||
*cur++ = CUR;
|
||||
if ((NXT(1) == ')') || (NXT(1) == '(') || (NXT(1) == '^')) {
|
||||
NEXT;
|
||||
}
|
||||
}
|
||||
*cur++ = CUR;
|
||||
NEXT;
|
||||
}
|
||||
*cur = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user