Rocco Rutte:
[apps/madmutt.git] / imap / mx_imap.c
index 26ee476..4ad4bbb 100644 (file)
@@ -38,8 +38,10 @@ static int imap_open_new_message (MESSAGE * msg, CONTEXT * dest, HEADER * hdr)
   char tmp[_POSIX_PATH_MAX];
 
   mutt_mktemp (tmp);
-  if ((msg->fp = safe_fopen (tmp, "w")) == NULL)
+  if ((msg->fp = safe_fopen (tmp, "w")) == NULL) {
+    mutt_perror (tmp);
     return (-1);
+  }
   msg->path = safe_strdup (tmp);
   return 0;
 }