diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-08-10 12:14:54 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-08-10 12:14:54 +0300 |
commit | 389b7b520b5a9ecd7381bcbdf3e096b76595650f (patch) | |
tree | 2e7199c7e124fc1cca0d9879944599e456efd347 /support | |
parent | 84b71627b3986acde819444a6644130e22309fc5 (diff) | |
parent | b4ca4f05ffd71fd3536d8a35893300d52d2ac1c1 (diff) | |
download | egawk-389b7b520b5a9ecd7381bcbdf3e096b76595650f.tar.gz egawk-389b7b520b5a9ecd7381bcbdf3e096b76595650f.tar.bz2 egawk-389b7b520b5a9ecd7381bcbdf3e096b76595650f.zip |
Merge branch 'gawk-4.2-stable' into feature/gnulib-regex
Diffstat (limited to 'support')
-rw-r--r-- | support/ChangeLog | 5 | ||||
-rw-r--r-- | support/dfa.c | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/support/ChangeLog b/support/ChangeLog index dc8ae15f..1cde0018 100644 --- a/support/ChangeLog +++ b/support/ChangeLog @@ -1,3 +1,8 @@ +2018-08-10 Arnold D. Robbins <arnold@skeeve.com> + + * dfa.c: Sync with GNULIB. + * regcomp.c: Updated from GNULIB and proposed fix applied. + 2018-07-26 Arnold D. Robbins <arnold@skeeve.com> * regcomp.c, regex.c, regex.h, regex_internal.c, regex_internal.h, 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, |