mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
xpath: Don't descend into OP_VALUE in debug dump
For some reason, its "ch1" value is invalid.
This commit is contained in:
parent
00167cae33
commit
5f1131dda5
4
xpath.c
4
xpath.c
@ -1467,6 +1467,10 @@ xmlXPathDebugDumpStepOp(FILE *output, xmlXPathCompExprPtr comp,
|
||||
}
|
||||
fprintf(output, "\n");
|
||||
finish:
|
||||
/* OP_VALUE has invalid ch1. */
|
||||
if (op->op == XPATH_OP_VALUE)
|
||||
return;
|
||||
|
||||
if (op->ch1 >= 0)
|
||||
xmlXPathDebugDumpStepOp(output, comp, &comp->steps[op->ch1], depth + 1);
|
||||
if (op->ch2 >= 0)
|
||||
|
Loading…
x
Reference in New Issue
Block a user