aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/exchange-operations/exchange-config-listener.c
diff options
context:
space:
mode:
authorSarfaaz Ahmed <asarfraaz@novell.com>2005-06-14 14:58:49 +0800
committerAhmed Sarfraaz <sarfraaz@src.gnome.org>2005-06-14 14:58:49 +0800
commitd9ebf288b8082c89a9b5c808c2554a0468a20384 (patch)
tree4718b9a06c52da536ded45c92cebc3c5e68681e1 /plugins/exchange-operations/exchange-config-listener.c
parent78f04d362464b38903d5e972966d3459be979ad9 (diff)
downloadgsoc2013-evolution-d9ebf288b8082c89a9b5c808c2554a0468a20384.tar
gsoc2013-evolution-d9ebf288b8082c89a9b5c808c2554a0468a20384.tar.gz
gsoc2013-evolution-d9ebf288b8082c89a9b5c808c2554a0468a20384.tar.bz2
gsoc2013-evolution-d9ebf288b8082c89a9b5c808c2554a0468a20384.tar.lz
gsoc2013-evolution-d9ebf288b8082c89a9b5c808c2554a0468a20384.tar.xz
gsoc2013-evolution-d9ebf288b8082c89a9b5c808c2554a0468a20384.tar.zst
gsoc2013-evolution-d9ebf288b8082c89a9b5c808c2554a0468a20384.zip
Fixed some warnings Similar
2005-06-14 Sarfaaz Ahmed <asarfraaz@novell.com> * exchange-account-setup.c : Fixed some warnings * exchange-config-listener.c : Similar svn path=/trunk/; revision=29500
Diffstat (limited to 'plugins/exchange-operations/exchange-config-listener.c')
-rw-r--r--plugins/exchange-operations/exchange-config-listener.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/exchange-operations/exchange-config-listener.c b/plugins/exchange-operations/exchange-config-listener.c
index d41384d79d..1a114b6baf 100644
--- a/plugins/exchange-operations/exchange-config-listener.c
+++ b/plugins/exchange-operations/exchange-config-listener.c
@@ -368,7 +368,7 @@ add_folder_esource (ExchangeAccount *account,
gboolean is_contacts_folder = TRUE, group_new = FALSE, source_new = FALSE;
const char *offline = NULL;
int mode;
- ESourceList *source_list;
+ ESourceList *source_list = NULL;
client = gconf_client_get_default ();
@@ -555,7 +555,7 @@ remove_account_esource (ExchangeAccount *account,
gboolean found_group;
const char *source_uid;
GConfClient *client;
- ESourceList *source_list;
+ ESourceList *source_list = NULL;
/* Remove the ESource group, to remove all the folders in a component */
@@ -655,7 +655,7 @@ remove_folder_esource (ExchangeAccount *account,
const char *source_uid;
GSList *ids, *temp_ids, *node_to_be_deleted;
GConfClient *client;
- ESourceList *source_list;
+ ESourceList *source_list = NULL;
client = gconf_client_get_default ();
@@ -817,8 +817,8 @@ account_added (EAccountList *account_list, EAccount *account)
g_signal_emit (config_listener, signals[EXCHANGE_ACCOUNT_CREATED], 0,
exchange_account);
- add_sources (exchange_account);
exchange_account_connect (exchange_account);
+ add_sources (exchange_account);
}
struct account_update_data {