aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2008-07-03 17:32:25 +0800
committerMilan Crha <mcrha@src.gnome.org>2008-07-03 17:32:25 +0800
commitcaa0a3d44c74e440d5de07f770583491549edb82 (patch)
tree0c5d97589f8fb63266fc3b1801a358ff9f4d8abf /addressbook
parentea3b220f0497a14ec15408dfdfab7d5d693974b8 (diff)
downloadgsoc2013-evolution-caa0a3d44c74e440d5de07f770583491549edb82.tar
gsoc2013-evolution-caa0a3d44c74e440d5de07f770583491549edb82.tar.gz
gsoc2013-evolution-caa0a3d44c74e440d5de07f770583491549edb82.tar.bz2
gsoc2013-evolution-caa0a3d44c74e440d5de07f770583491549edb82.tar.lz
gsoc2013-evolution-caa0a3d44c74e440d5de07f770583491549edb82.tar.xz
gsoc2013-evolution-caa0a3d44c74e440d5de07f770583491549edb82.tar.zst
gsoc2013-evolution-caa0a3d44c74e440d5de07f770583491549edb82.zip
** Fix for bug #540152
2008-07-03 Milan Crha <mcrha@redhat.com> ** Fix for bug #540152 * addressbook/gui/component/addressbook-component.c: (ensure_sources): Unref source only when we created it - the list owns the pointer now. * calendar/gui/calendar-component.c: (ensure_sources): Unref sources only when we created it - the list owns the pointer now. * calendar/gui/tasks-component.c: (ensure_sources): * calendar/gui/memos-component.c: (ensure_sources): Do not leak ESource. svn path=/trunk/; revision=35717
Diffstat (limited to 'addressbook')
-rw-r--r--addressbook/ChangeLog7
-rw-r--r--addressbook/gui/component/addressbook-component.c4
2 files changed, 9 insertions, 2 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 650d267a79..c3432bf9d5 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,3 +1,10 @@
+2008-07-03 Milan Crha <mcrha@redhat.com>
+
+ ** Fix for bug #540152
+
+ * gui/component/addressbook-component.c: (ensure_sources):
+ Unref source only when we created it - the list owns the pointer now.
+
2008-06-24 Milan Crha <mcrha@redhat.com>
** Fix for bug #539755
diff --git a/addressbook/gui/component/addressbook-component.c b/addressbook/gui/component/addressbook-component.c
index 55e9535840..b55cb9bd16 100644
--- a/addressbook/gui/component/addressbook-component.c
+++ b/addressbook/gui/component/addressbook-component.c
@@ -151,6 +151,7 @@ ensure_sources (AddressbookComponent *component)
/* Create the default Person addressbook */
ESource *source = e_source_new (_("Personal"), PERSONAL_RELATIVE_URI);
e_source_group_add_source (on_this_computer, source, -1);
+ g_object_unref (source);
e_source_set_property (source, "completion", "true");
@@ -164,8 +165,7 @@ ensure_sources (AddressbookComponent *component)
on_ldap_servers = group;
}
- if (personal_source)
- g_object_unref (personal_source);
+
g_free (base_uri_proto);
g_free (base_uri);
}