1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 20:25:14 +03:00

Fix a small bug in XPath evaluation code

This commit is contained in:
Marius Wachtler 2010-10-12 09:09:07 +02:00 committed by Daniel Veillard
parent d2190faf78
commit 2ddecc2386

View File

@ -12655,7 +12655,7 @@ xmlXPathCompOpEvalFirst(xmlXPathParserContextPtr ctxt,
return (total);
#ifdef XP_OPTIMIZED_FILTER_FIRST
case XPATH_OP_FILTER:
total =+ xmlXPathCompOpEvalFilterFirst(ctxt, op, first);
total += xmlXPathCompOpEvalFilterFirst(ctxt, op, first);
return (total);
#endif
default: