X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=imap%2Fmx_imap.c;h=6ad4b324590ba594615532c5e8133859c23d7897;hp=26ee4769951cd20e02a0ef2a12c2c4dcc60fe631;hb=adbac5bafc8f1ebe348b38342ace473f128d762a;hpb=42cc85de46ed8971a6c793835023cf26766fb096 diff --git a/imap/mx_imap.c b/imap/mx_imap.c index 26ee476..6ad4b32 100644 --- a/imap/mx_imap.c +++ b/imap/mx_imap.c @@ -38,9 +38,11 @@ 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); + } + msg->path = str_dup (tmp); return 0; } @@ -59,7 +61,7 @@ static int imap_commit_message (MESSAGE* msg, CONTEXT* ctx) { } mx_t* imap_reg_mx (void) { - mx_t* fmt = safe_calloc (1, sizeof (mx_t)); + mx_t* fmt = mem_calloc (1, sizeof (mx_t)); /* make up mx_t record... */ fmt->type = M_IMAP;