diff options
Diffstat (limited to 'support/dfa.c')
-rw-r--r-- | support/dfa.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/support/dfa.c b/support/dfa.c index 4b4c514a..41df67bf 100644 --- a/support/dfa.c +++ b/support/dfa.c @@ -3577,7 +3577,10 @@ dfafree (struct dfa *d) } if (d->superset) - dfafree (d->superset); + { + dfafree (d->superset); + free (d->superset); + } } /* Having found the postfix representation of the regular expression, |