aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook
diff options
context:
space:
mode:
Diffstat (limited to 'addressbook')
-rw-r--r--addressbook/ChangeLog10
-rw-r--r--addressbook/conduit/address-conduit.c2
2 files changed, 12 insertions, 0 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index c3432bf9d5..c62f154be6 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,3 +1,13 @@
+2008-07-13 Keith Packard <keithp@keithp.com>
+
+ ** Fix for bug #541355
+
+ * conduit/address-conduit.c:
+ The pilot link code does call free_match on data returned from the
+ for_each method, which the evolution conduits aren't prepared to
+ handle. This patch removes any freed objects from the 'locals' list in
+ each conduit which otherwise frees them again when the conduit is closed.
+
2008-07-03 Milan Crha <mcrha@redhat.com>
** Fix for bug #540152
diff --git a/addressbook/conduit/address-conduit.c b/addressbook/conduit/address-conduit.c
index 1e746ffa71..b88a85eb96 100644
--- a/addressbook/conduit/address-conduit.c
+++ b/addressbook/conduit/address-conduit.c
@@ -1774,6 +1774,8 @@ free_match (GnomePilotConduitSyncAbs *conduit,
g_return_val_if_fail (local != NULL, -1);
+ ctxt->locals = g_list_remove (ctxt->locals, local);
+
addrconduit_destroy_record (local);
return 0;