From 73258ef76ff8c4a53a128bb1b219841d3431b818 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Thu, 15 Nov 2007 04:38:31 +0000 Subject: Call camel_folder_info_new() instead of g_new0(). 2007-11-14 Matthew Barnes * mail/em-folder-tree.c (em_folder_tree_get_selected_folder_info): * plugins/exchange-operations/exchange-folder.c (ex_create_folder_info): Call camel_folder_info_new() instead of g_new0(). svn path=/trunk/; revision=34538 --- plugins/exchange-operations/ChangeLog | 5 +++++ plugins/exchange-operations/exchange-folder.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'plugins/exchange-operations') diff --git a/plugins/exchange-operations/ChangeLog b/plugins/exchange-operations/ChangeLog index 9f4513eb46..e41100484f 100644 --- a/plugins/exchange-operations/ChangeLog +++ b/plugins/exchange-operations/ChangeLog @@ -1,3 +1,8 @@ +2007-11-14 Matthew Barnes + + * exchange-folder.c (ex_create_folder_info): + Call camel_folder_info_new() instead of g_new0(). + 2007-10-26 Kjartan Maraas * exchange-account-setup.c: (org_gnome_exchange_settings), diff --git a/plugins/exchange-operations/exchange-folder.c b/plugins/exchange-operations/exchange-folder.c index db2dc0e475..879e4ded28 100644 --- a/plugins/exchange-operations/exchange-folder.c +++ b/plugins/exchange-operations/exchange-folder.c @@ -159,7 +159,7 @@ ex_create_folder_info (CamelStore *store, char *name, char *uri, if (!path) return NULL; - info = g_new0 (CamelFolderInfo, 1); + info = camel_folder_info_new (); info->name = name; info->uri = uri; info->full_name = g_strdup (path + 1); -- cgit v1.2.3