]> granicus.if.org Git - neomutt/commitdiff
Properly initialize struct stats in buffy check
authorErik Hovland <erik@hovland.org>
Wed, 18 Mar 2009 13:43:48 +0000 (14:43 +0100)
committerErik Hovland <erik@hovland.org>
Wed, 18 Mar 2009 13:43:48 +0000 (14:43 +0100)
ChangeLog
buffy.c

index 755e7248caaf255b4615b7694c2e951b459dbe0d..9de5c2837510683e8205d28ff3168693a565780b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,20 @@
+2009-03-17 20:04 +0100  Rocco Rutte  <pdmef@gmx.net>  (903b3cee5485)
+
+       * addrbook.c, browser.c, compose.c, curs_main.c, imap/auth.c, mx.c,
+       pattern.c, pop_auth.c, postpone.c, query.c, recvattach.c,
+       remailer.c: Fix some warnings with -W about missing initializers in
+       structs
+
+2009-03-17 16:44 +0100  Todd Zullinger  <tmz@pobox.com>  (bb9b845800f6)
+
+       * ChangeLog, pgp.c: Ensure display is redrawn for application/pgp
+
+       When using gpg-agent, a hard redraw is needed after the pinentry
+       program is called. Otherwise, the screen is garbled and key
+       bindings are screwed up.
+
+       Closes #3196.
+
 2009-03-15 16:44 +0100  Rocco Rutte  <pdmef@gmx.net>  (bc7c64ff3e48)
 
        * configure.ac, protos.h, wcscasecmp.c: Add wcscasecmp() compatibility
diff --git a/buffy.c b/buffy.c
index c5578504dc56c3d07fbcdc65cc3c32a91276add5..f7b366cb29e6532ba45adc9b4853e9926f5a169b 100644 (file)
--- a/buffy.c
+++ b/buffy.c
@@ -260,6 +260,10 @@ int mutt_buffy_check (int force)
   struct stat contex_sb;
   time_t t;
 
+  sb.st_size=0;
+  contex_sb.st_dev=0;
+  contex_sb.st_ino=0;
+
 #ifdef USE_IMAP
   /* update postponed count as well, on force */
   if (force)