pattern: Merge identical branches

Fixes #479.
This commit is contained in:
Nick Wellnhofer 2023-02-21 15:35:57 +01:00
parent 85057e5131
commit a509694c17

View File

@ -2039,22 +2039,12 @@ xmlStreamPushInternal(xmlStreamCtxtPtr stream,
#endif /* if 0 ------------------------------------------------------- */ #endif /* if 0 ------------------------------------------------------- */
if (match) { if (match) {
final = step.flags & XML_STREAM_STEP_FINAL; final = step.flags & XML_STREAM_STEP_FINAL;
if (desc) { if (final) {
if (final) { ret = 1;
ret = 1; } else {
} else { xmlStreamCtxtAddState(stream, stepNr + 1,
/* descending match create a new state */ stream->level + 1);
xmlStreamCtxtAddState(stream, stepNr + 1, }
stream->level + 1);
}
} else {
if (final) {
ret = 1;
} else {
xmlStreamCtxtAddState(stream, stepNr + 1,
stream->level + 1);
}
}
if ((ret != 1) && (step.flags & XML_STREAM_STEP_IN_SET)) { if ((ret != 1) && (step.flags & XML_STREAM_STEP_IN_SET)) {
/* /*
* Check if we have a special case like "foo/bar//.", where * Check if we have a special case like "foo/bar//.", where