From 7b128390181cff1339199e570180fac485ba60cf Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Tue, 27 Mar 2001 23:12:46 +0000 Subject: If we aren't going to even check the resp/free buffer that gets returned 2001-03-27 Jeffrey Stedfast * 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..." rather than the expected "+OK ### octets\r\n..." svn path=/trunk/; revision=8985 --- camel/providers/pop3/camel-pop3-folder.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'camel/providers') 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); -- cgit v1.2.3