diff options
author | Sivaiah Nallagatla <snallagatla@novell.com> | 2005-03-07 17:56:33 +0800 |
---|---|---|
committer | Sivaiah Nallagatla <siva@src.gnome.org> | 2005-03-07 17:56:33 +0800 |
commit | 323f0289cf1ff60f31bec25d75e35a73af26574c (patch) | |
tree | 553c2e42918d52814625831d24cade8da41a7efc /plugins | |
parent | 9cad760c5b845ab1d19b9940bd6665e00b1fc291 (diff) | |
download | gsoc2013-evolution-323f0289cf1ff60f31bec25d75e35a73af26574c.tar.gz gsoc2013-evolution-323f0289cf1ff60f31bec25d75e35a73af26574c.tar.zst gsoc2013-evolution-323f0289cf1ff60f31bec25d75e35a73af26574c.zip |
don't free container list here. It is chaced in connection and will be
2005-03-07 Sivaiah Nallagatla <snallagatla@novell.com>
* camel-gw-listner.c (add_addressbook_sources) :
don't free container list here. It is chaced in
connection and will be frred later.
Fixes #72807
svn path=/trunk/; revision=28973
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/groupwise-account-setup/ChangeLog | 8 | ||||
-rw-r--r-- | plugins/groupwise-account-setup/camel-gw-listener.c | 6 |
2 files changed, 8 insertions, 6 deletions
diff --git a/plugins/groupwise-account-setup/ChangeLog b/plugins/groupwise-account-setup/ChangeLog index 7e174dd0f6..218b17aab0 100644 --- a/plugins/groupwise-account-setup/ChangeLog +++ b/plugins/groupwise-account-setup/ChangeLog @@ -1,3 +1,11 @@ +2005-03-07 Sivaiah Nallagatla <snallagatla@novell.com> + + * camel-gw-listner.c (add_addressbook_sources) : + don't free container list here. It is chaced in + connection and will be frred later. + + Fixes #72807 + 2005-02-16 Not Zed <NotZed@Ximian.com> * groupwise-account-setup.c (org_gnome_gw_account_setup): return diff --git a/plugins/groupwise-account-setup/camel-gw-listener.c b/plugins/groupwise-account-setup/camel-gw-listener.c index 27f5a3f0f5..c723a51d9f 100644 --- a/plugins/groupwise-account-setup/camel-gw-listener.c +++ b/plugins/groupwise-account-setup/camel-gw-listener.c @@ -543,13 +543,7 @@ add_addressbook_sources (EAccount *account) e_source_set_property (source, "use_ssl", use_ssl); e_source_group_add_source (group, source, -1); g_object_unref (source); - g_object_unref (E_GW_CONTAINER(temp_list->data)); - } - - g_list_free (books_list); - - e_source_list_add_group (list, group, -1); e_source_list_sync (list, NULL); g_object_unref (group); |