aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/pop3/camel-pop3-folder.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-03-28 07:12:46 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-03-28 07:12:46 +0800
commit7b128390181cff1339199e570180fac485ba60cf (patch)
treef2b4e5923ae0444c2423426c3d322edae3ee6f08 /camel/providers/pop3/camel-pop3-folder.c
parentde1dd89f6c53f81b3dd68861d1ff50edf2dc5674 (diff)
downloadgsoc2013-evolution-7b128390181cff1339199e570180fac485ba60cf.tar
gsoc2013-evolution-7b128390181cff1339199e570180fac485ba60cf.tar.gz
gsoc2013-evolution-7b128390181cff1339199e570180fac485ba60cf.tar.bz2
gsoc2013-evolution-7b128390181cff1339199e570180fac485ba60cf.tar.lz
gsoc2013-evolution-7b128390181cff1339199e570180fac485ba60cf.tar.xz
gsoc2013-evolution-7b128390181cff1339199e570180fac485ba60cf.tar.zst
gsoc2013-evolution-7b128390181cff1339199e570180fac485ba60cf.zip
If we aren't going to even check the resp/free buffer that gets returned
2001-03-27 Jeffrey Stedfast <fejj@ximian.com> * providers/pop3/camel-pop3-folder.c (pop3_sync): If we aren't going to even check the resp/free buffer that gets returned from camel_pop3_command, don't even bother using it. Send in NULL instead. (pop3_get_message): Check to make sure that the `result' string is non-NULL. It's possible that some POP servers may return with "+OK\r\n<message>..." rather than the expected "+OK ### octets\r\n<message>..." svn path=/trunk/; revision=8985
Diffstat (limited to 'camel/providers/pop3/camel-pop3-folder.c')
-rw-r--r--camel/providers/pop3/camel-pop3-folder.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/camel/providers/pop3/camel-pop3-folder.c b/camel/providers/pop3/camel-pop3-folder.c
index 7478470a5d..3b1366ba27 100644
--- a/camel/providers/pop3/camel-pop3-folder.c
+++ b/camel/providers/pop3/camel-pop3-folder.c
@@ -206,8 +206,7 @@ pop3_sync (CamelFolder *folder, gboolean expunge, CamelException *ex)
CamelPop3Folder *pop3_folder;
CamelPop3Store *pop3_store;
int i, status;
- char *resp;
-
+
if (!expunge)
return;
@@ -216,7 +215,7 @@ pop3_sync (CamelFolder *folder, gboolean expunge, CamelException *ex)
for (i = 0; i < pop3_folder->uids->len; i++) {
if (pop3_folder->flags[i] & CAMEL_MESSAGE_DELETED) {
- status = camel_pop3_command (pop3_store, &resp, ex,
+ status = camel_pop3_command (pop3_store, NULL, ex,
"DELE %d", i + 1);
if (status != CAMEL_POP3_OK)
return;
@@ -297,7 +296,7 @@ pop3_get_message (CamelFolder *folder, const char *uid, CamelException *ex)
}
/* this should be "nnn octets" ? */
- if (sscanf(result, "%d", &total) != 1)
+ if (result && sscanf (result, "%d", &total) != 1)
total = 0;
g_free (result);