aboutsummaryrefslogtreecommitdiffstats
path: root/e-util
diff options
context:
space:
mode:
Diffstat (limited to 'e-util')
-rw-r--r--e-util/ChangeLog6
-rw-r--r--e-util/e-config.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog
index 98cea5349d..148f7350fe 100644
--- a/e-util/ChangeLog
+++ b/e-util/ChangeLog
@@ -1,3 +1,9 @@
+2008-02-18 Milan Crha <mcrha@redhat.com>
+
+ ** Part of fix for bug #515744
+
+ * e-config.c: (ep_finalise): Use proper member to free.
+
2008-02-08 Matthew Barnes <mbarnes@redhat.com>
** Fixes part of bug #509741
diff --git a/e-util/e-config.c b/e-util/e-config.c
index 79e87c84b6..5918600000 100644
--- a/e-util/e-config.c
+++ b/e-util/e-config.c
@@ -135,7 +135,7 @@ ep_finalise(GObject *o)
g_free(wn);
}
- while ( (cn = (struct _check_node *)e_dlist_remhead(&p->widgets)) ) {
+ while ( (cn = (struct _check_node *)e_dlist_remhead(&p->checks)) ) {
g_free(cn->pageid);
g_free(cn);
}