diff options
author | Parthasarathi Susarla <sparthasarathi@novell.com> | 2005-12-05 14:04:12 +0800 |
---|---|---|
committer | Parthasarathi Susarla <saps@src.gnome.org> | 2005-12-05 14:04:12 +0800 |
commit | 19d9717dd1c1078b2809819d5bbaa7a4f287a693 (patch) | |
tree | c21a4abaa2858af7c64f779299c549616415c228 /plugins/groupwise-features | |
parent | c9cbc4253a9fbd39b38835bcddd0e5124215afa1 (diff) | |
download | gsoc2013-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')
-rw-r--r-- | plugins/groupwise-features/ChangeLog | 6 | ||||
-rw-r--r-- | plugins/groupwise-features/proxy.c | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/plugins/groupwise-features/ChangeLog b/plugins/groupwise-features/ChangeLog index 72d8ac0604..76ae47237f 100644 --- a/plugins/groupwise-features/ChangeLog +++ b/plugins/groupwise-features/ChangeLog @@ -1,3 +1,9 @@ +2005-12-05 Parthasarathi Susarla <sparthasarathi@novell.com> + + * proxy.c: initialize CamelException. + + Fixes bug #314576 + 2005-11-10 Harish Krishnaswamy <kharish@novell.com> * mail-send-options.c: (org_gnome_compose_send_options): 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; } |