mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
parent
a5bc460583
commit
fa993130f9
@ -400,7 +400,7 @@ struct _xmlXPathParserContext {
|
|||||||
int xptr; /* it this an XPointer expression */
|
int xptr; /* it this an XPointer expression */
|
||||||
xmlNodePtr ancestor; /* used for walking preceding axis */
|
xmlNodePtr ancestor; /* used for walking preceding axis */
|
||||||
|
|
||||||
int valueFrame; /* unused */
|
int valueFrame; /* always zero for compatibility */
|
||||||
};
|
};
|
||||||
|
|
||||||
/************************************************************************
|
/************************************************************************
|
||||||
|
@ -297,7 +297,7 @@ XMLPUBFUN void *
|
|||||||
if (ctxt == NULL) return; \
|
if (ctxt == NULL) return; \
|
||||||
if (nargs != (x)) \
|
if (nargs != (x)) \
|
||||||
XP_ERROR(XPATH_INVALID_ARITY); \
|
XP_ERROR(XPATH_INVALID_ARITY); \
|
||||||
if (ctxt->valueNr < ctxt->valueFrame + (x)) \
|
if (ctxt->valueNr < (x)) \
|
||||||
XP_ERROR(XPATH_STACK_ERROR);
|
XP_ERROR(XPATH_STACK_ERROR);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1248,7 +1248,6 @@ xmlXPtrEvalXPointer(xmlXPathParserContextPtr ctxt) {
|
|||||||
ctxt->valueNr = 0;
|
ctxt->valueNr = 0;
|
||||||
ctxt->valueMax = 10;
|
ctxt->valueMax = 10;
|
||||||
ctxt->value = NULL;
|
ctxt->value = NULL;
|
||||||
ctxt->valueFrame = 0;
|
|
||||||
}
|
}
|
||||||
SKIP_BLANKS;
|
SKIP_BLANKS;
|
||||||
if (CUR == '/') {
|
if (CUR == '/') {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user