diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-09-14 23:59:03 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-09-14 23:59:03 -0700 |
commit | 55207f2ce58d2ecde6a3274147d3162c987cb510 (patch) | |
tree | 6eef0f23e71b4d4585e06cc0dd029846d13bf6eb /regex.c | |
parent | 59c77ff3bda8e9b44b67a31ffc4f883e74e7e844 (diff) | |
download | txr-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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]); |