diff options
author | Not Zed <NotZed@Ximian.com> | 2001-01-23 11:25:03 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-01-23 11:25:03 +0800 |
commit | 96be0c50f7dde84249db1194e69e8b146afc0687 (patch) | |
tree | 0dc092e539dcf3415b4edb6f8e0a4c1027504d7e /camel/providers/imap | |
parent | 096f54cfa0d3ec4916c3c27038ce2d609b5edbd0 (diff) | |
download | gsoc2013-evolution-96be0c50f7dde84249db1194e69e8b146afc0687.tar gsoc2013-evolution-96be0c50f7dde84249db1194e69e8b146afc0687.tar.gz gsoc2013-evolution-96be0c50f7dde84249db1194e69e8b146afc0687.tar.bz2 gsoc2013-evolution-96be0c50f7dde84249db1194e69e8b146afc0687.tar.lz gsoc2013-evolution-96be0c50f7dde84249db1194e69e8b146afc0687.tar.xz gsoc2013-evolution-96be0c50f7dde84249db1194e69e8b146afc0687.tar.zst gsoc2013-evolution-96be0c50f7dde84249db1194e69e8b146afc0687.zip |
Removed some debug 'warnings', as they should now be displayed at the
2001-01-23 Not Zed <NotZed@Ximian.com>
* providers/imap/camel-imap-summary.c (message_info_load): Removed
some debug 'warnings', as they should now be displayed at the
toplevel loader, and just made the code match similar code
elsewhere.
* providers/local/camel-mbox-summary.c (message_info_load): Error
handling.
(message_info_save): more error handling.
* camel-folder-summary.c (message_info_load): Add error handling
and sanity checking.
(camel_folder_summary_load): Add error checks.
(perform_content_info_load): Error + sanity checks.
(content_info_load): error + sanity checks.
svn path=/trunk/; revision=7737
Diffstat (limited to 'camel/providers/imap')
-rw-r--r-- | camel/providers/imap/camel-imap-summary.c | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/camel/providers/imap/camel-imap-summary.c b/camel/providers/imap/camel-imap-summary.c index 74a024f760..66228649bc 100644 --- a/camel/providers/imap/camel-imap-summary.c +++ b/camel/providers/imap/camel-imap-summary.c @@ -169,20 +169,17 @@ message_info_load (CamelFolderSummary *s, FILE *in) CamelImapMessageInfo *iinfo; info = camel_imap_summary_parent->message_info_load (s, in); - if (!info) { - g_warning ("eek! encountered a NULL message info!"); - return NULL; - } - iinfo = (CamelImapMessageInfo *)info; + if (info) { + iinfo = (CamelImapMessageInfo *)info; - if (camel_folder_summary_decode_uint32 (in, &iinfo->server_flags) == -1) { - /* wouldn't it just be better to default to certain server flags here? */ - g_warning ("eek! problems decoding server flags!"); - camel_folder_summary_info_free (s, info); - return NULL; + if (camel_folder_summary_decode_uint32 (in, &iinfo->server_flags) == -1) + goto error; } return info; +error: + camel_folder_summary_info_free (s, info); + return NULL; } static int |