aboutsummaryrefslogtreecommitdiffstats
path: root/support
diff options
context:
space:
mode:
Diffstat (limited to 'support')
-rw-r--r--support/ChangeLog4
-rw-r--r--support/dfa.c5
2 files changed, 8 insertions, 1 deletions
diff --git a/support/ChangeLog b/support/ChangeLog
index 194811c8..68d10092 100644
--- a/support/ChangeLog
+++ b/support/ChangeLog
@@ -1,3 +1,7 @@
+2018-08-10 Arnold D. Robbins <arnold@skeeve.com>
+
+ * dfa.c: Sync with GNULIB.
+
2018-06-27 Arnold D. Robbins <arnold@skeeve.com>
* dfa.c, intprops.h, localeinfo.c, localeinfo.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,