fixed mlXPathCompOpEvalPositionalPredicate problem with object caching

* xpath.c: fixed mlXPathCompOpEvalPositionalPredicate problem
  with object caching (bug #469410)

svn path=/trunk/; revision=3653
This commit is contained in:
William M. Brack 2007-08-23 12:58:13 +00:00
parent 3888f47263
commit f179456d0f
2 changed files with 13 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Thu Aug 23 20:58:28 HKT 2007 William Brack <wbrack@mmm.com.hk>
* xpath.c: fixed mlXPathCompOpEvalPositionalPredicate problem
with object caching (bug #469410)
Thu Aug 23 11:28:38 CEST 2007 Daniel Veillard <daniel@veillard.com>
* xmlschemas.c test/schemas/*455953* result/schemas/bug455953*:

View File

@ -11706,8 +11706,15 @@ xmlXPathCompOpEvalPositionalPredicate(xmlXPathParserContextPtr ctxt,
valuePush(ctxt, contextObj);
res = xmlXPathCompOpEvalToBoolean(ctxt, exprOp, 1);
if ((ctxt->error != XPATH_EXPRESSION_OK) || (res == -1))
if ((ctxt->error != XPATH_EXPRESSION_OK) || (res == -1)) {
xmlXPathObjectPtr tmp;
/* pop the result */
tmp = valuePop(ctxt);
xmlXPathReleaseObject(xpctxt, tmp);
/* then pop off contextObj, which will be freed later */
valuePop(ctxt);
goto evaluation_error;
}
if (res)
pos++;