Commit 5f586c01 5f586c015a2a91a4f962463d91580e8f3d5ac273 by Sergey Poznyakoff

(mail_delete): Initialize auto variables.

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