Commit 5f586c01 5f586c015a2a91a4f962463d91580e8f3d5ac273 by Sergey Poznyakoff

(mail_delete): Initialize auto variables.

1 parent 029dc1f2
...@@ -49,8 +49,8 @@ mail_delete (int argc, char **argv) ...@@ -49,8 +49,8 @@ mail_delete (int argc, char **argv)
49 unsigned int here = realcursor; 49 unsigned int here = realcursor;
50 do 50 do
51 { 51 {
52 message_t msg; 52 message_t msg = NULL;
53 attribute_t attr; 53 attribute_t attr = NULL;
54 54
55 mailbox_get_message (mbox, realcursor, &msg); 55 mailbox_get_message (mbox, realcursor, &msg);
56 message_get_attribute (msg, &attr); 56 message_get_attribute (msg, &attr);
......