aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/groupwise-features/proxy.c
diff options
context:
space:
mode:
authorParthasarathi Susarla <sparthasarathi@novell.com>2005-12-05 14:04:12 +0800
committerParthasarathi Susarla <saps@src.gnome.org>2005-12-05 14:04:12 +0800
commit19d9717dd1c1078b2809819d5bbaa7a4f287a693 (patch)
treec21a4abaa2858af7c64f779299c549616415c228 /plugins/groupwise-features/proxy.c
parentc9cbc4253a9fbd39b38835bcddd0e5124215afa1 (diff)
downloadgsoc2013-evolution-19d9717dd1c1078b2809819d5bbaa7a4f287a693.tar
gsoc2013-evolution-19d9717dd1c1078b2809819d5bbaa7a4f287a693.tar.gz
gsoc2013-evolution-19d9717dd1c1078b2809819d5bbaa7a4f287a693.tar.bz2
gsoc2013-evolution-19d9717dd1c1078b2809819d5bbaa7a4f287a693.tar.lz
gsoc2013-evolution-19d9717dd1c1078b2809819d5bbaa7a4f287a693.tar.xz
gsoc2013-evolution-19d9717dd1c1078b2809819d5bbaa7a4f287a693.tar.zst
gsoc2013-evolution-19d9717dd1c1078b2809819d5bbaa7a4f287a693.zip
initialize CamelException.
2005-12-05 Parthasarathi Susarla <sparthasarathi@novell.com> * proxy.c: initialize CamelException. Fixes bug #314576 svn path=/trunk/; revision=30717
Diffstat (limited to 'plugins/groupwise-features/proxy.c')
-rw-r--r--plugins/groupwise-features/proxy.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/groupwise-features/proxy.c b/plugins/groupwise-features/proxy.c
index b75e82340c..f896e6686e 100644
--- a/plugins/groupwise-features/proxy.c
+++ b/plugins/groupwise-features/proxy.c
@@ -652,6 +652,7 @@ org_gnome_proxy (EPlugin *epl, EConfigHookItemFactoryData *data)
target_account = (EMConfigTargetAccount *)data->config->target;
account = target_account->account;
+ camel_exception_init (&ex);
if (!(store = (CamelOfflineStore *) camel_session_get_service (session, e_account_get_string(account, E_ACCOUNT_SOURCE_URL), CAMEL_PROVIDER_STORE, &ex))) {
camel_exception_clear (&ex);
return NULL;
@@ -715,6 +716,7 @@ org_gnome_proxy (EPlugin *epl, EConfigHookItemFactoryData *data)
}
camel_object_unref (store);
+ camel_exception_clear (&ex);
return NULL;
}