1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-03-31 06:50:06 +03:00

regexp: Fix mistake in previous commit

The `ret = 0` line should have been deleted.

Fixes #531.
This commit is contained in:
Nick Wellnhofer 2023-05-02 00:32:50 +02:00
parent a06eaa6119
commit c613ab14b8

View File

@ -2682,7 +2682,6 @@ xmlFARecurseDeterminism(xmlRegParserCtxtPtr ctxt, xmlRegStatePtr state,
if ((t1->to != tonr) ||
(!xmlFAEqualAtoms(t1->atom, atom, deep)))
ret = 0;
ret = 0;
/* mark the transition as non-deterministic */
t1->nd = 1;
}