]> code.citadel.org Git - citadel.git/commitdiff
* Silenced a compiler warning
authorArt Cancro <ajc@citadel.org>
Thu, 10 Mar 2005 03:36:25 +0000 (03:36 +0000)
committerArt Cancro <ajc@citadel.org>
Thu, 10 Mar 2005 03:36:25 +0000 (03:36 +0000)
* Our graceful cleanup handler no longer gracefully cleans up after
  receiving SIGSEGV or its friends.  Unfortunately we need the core dump.

citadel/ChangeLog
citadel/imap_fetch.c

index f98281c10eca87e4ab9fabd73573c1ab7639d318..1c5135175a6d99ae32d3eb60bf585b84848504e9 100644 (file)
@@ -1,4 +1,9 @@
  $Log$
+ Revision 641.25  2005/03/10 03:36:25  ajc
+ * Silenced a compiler warning
+ * Our graceful cleanup handler no longer gracefully cleans up after
+   receiving SIGSEGV or its friends.  Unfortunately we need the core dump.
+
  Revision 641.24  2005/03/10 03:11:07  ajc
  * Altered the algorithm by which the doubly-linked session list is
    amended and culled.  Decided that performance is better than cute
@@ -6530,4 +6535,3 @@ Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
 
 Fri Jul 10 1998 Art Cancro <ajc@uncensored.citadel.org>
        * Initial CVS import
-
index 0723d4cd7f56d438df187da3a302d091c2f2208f..cee9785c542a2804022a9dfa7480a5179ca54dd1 100644 (file)
@@ -117,7 +117,7 @@ void imap_fetch_rfc822(long msgnum, char *whichfmt) {
        char buf[SIZ];
        char *ptr;
        size_t headers_size, text_size, total_size;
-       size_t bytes_to_send;
+       size_t bytes_to_send = 0;
        struct MetaData smi;
        int need_to_rewrite_metadata = 0;