diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-08-10 12:12:06 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-08-10 12:12:06 +0300 |
commit | 46892392c0284bf82d60c4b8cdc652bbaa4351cb (patch) | |
tree | 2e6c18b791e0c2048fbccda356db272aa2d584cf /support/dfa.c | |
parent | 6103384d051118cdd6a6f43b44e5456ff7a272eb (diff) | |
download | egawk-46892392c0284bf82d60c4b8cdc652bbaa4351cb.tar.gz egawk-46892392c0284bf82d60c4b8cdc652bbaa4351cb.tar.bz2 egawk-46892392c0284bf82d60c4b8cdc652bbaa4351cb.zip |
Sync dfa.c with GNULIB.
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, |