aboutsummaryrefslogtreecommitdiffstats
path: root/support
diff options
context:
space:
mode:
Diffstat (limited to 'support')
-rw-r--r--support/ChangeLog5
-rw-r--r--support/dfa.c5
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,