summaryrefslogtreecommitdiffstats
path: root/regex.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-09-14 23:59:03 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-09-14 23:59:03 -0700
commit55207f2ce58d2ecde6a3274147d3162c987cb510 (patch)
tree6eef0f23e71b4d4585e06cc0dd029846d13bf6eb /regex.c
parent59c77ff3bda8e9b44b67a31ffc4f883e74e7e844 (diff)
downloadtxr-55207f2ce58d2ecde6a3274147d3162c987cb510.tar.gz
txr-55207f2ce58d2ecde6a3274147d3162c987cb510.tar.bz2
txr-55207f2ce58d2ecde6a3274147d3162c987cb510.zip
Fix memory leak in regexes.
* regex.c (nfa_free): The visited marker must be incremented, otherwise nfa_all_states will only collect start and accept.
Diffstat (limited to 'regex.c')
-rw-r--r--regex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/regex.c b/regex.c
index fa825ab3..fd404b8b 100644
--- a/regex.c
+++ b/regex.c
@@ -1104,7 +1104,7 @@ static void nfa_free(nfa_t nfa)
all[0] = nfa.start;
all[1] = nfa.accept;
- nstates = nfa_all_states(all, 2, nfa.start->a.visited);
+ nstates = nfa_all_states(all, 2, nfa.start->a.visited + 1);
for (i = 0; i < nstates; i++)
nfa_state_free(all[i]);