Commit de42777f de42777f2a892f0500c71bd00b145dbe1c66977a by Sergey Poznyakoff

(mu_message_send): Initialize mailer to NULL.

1 parent 7ea06fa6
...@@ -740,7 +740,7 @@ SCM_DEFINE (mu_message_send, "mu-message-send", 1, 3, 0, ...@@ -740,7 +740,7 @@ SCM_DEFINE (mu_message_send, "mu-message-send", 1, 3, 0,
740 char *mailer_name; 740 char *mailer_name;
741 address_t from = NULL; 741 address_t from = NULL;
742 address_t to = NULL; 742 address_t to = NULL;
743 mailer_t mailer; 743 mailer_t mailer = NULL;
744 message_t msg; 744 message_t msg;
745 int status; 745 int status;
746 746
......