* [PATCH] Avoid a divide by zero if there's no messages to send.
@ 2006-04-05 14:22 Mike McCormack
0 siblings, 0 replies; only message in thread
From: Mike McCormack @ 2006-04-05 14:22 UTC (permalink / raw)
To: git
[-- Attachment #1: Type: text/plain, Size: 86 bytes --]
---
imap-send.c | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
[-- Attachment #2: 8f910a131c905720e9640ddecfd8f85927ddc660.diff --]
[-- Type: text/x-patch, Size: 643 bytes --]
8f910a131c905720e9640ddecfd8f85927ddc660
diff --git a/imap-send.c b/imap-send.c
index d04259a..52e2400 100644
--- a/imap-send.c
+++ b/imap-send.c
@@ -1333,6 +1333,12 @@ main(int argc, char **argv)
return 1;
}
+ total = count_messages( &all_msgs );
+ if (!total) {
+ fprintf(stderr,"no messages to send\n");
+ return 1;
+ }
+
/* write it to the imap server */
ctx = imap_open_store( &server );
if (!ctx) {
@@ -1340,7 +1346,6 @@ main(int argc, char **argv)
return 1;
}
- total = count_messages( &all_msgs );
fprintf( stderr, "sending %d message%s\n", total, (total!=1)?"s":"" );
ctx->name = imap_folder;
while (1) {
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2006-04-05 14:43 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-04-05 14:22 [PATCH] Avoid a divide by zero if there's no messages to send Mike McCormack
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.