Rocco Rutte:
[apps/madmutt.git] / imap / mx_imap.c
index 4ad4bbb..6ad4b32 100644 (file)
@@ -42,7 +42,7 @@ static int imap_open_new_message (MESSAGE * msg, CONTEXT * dest, HEADER * hdr)
     mutt_perror (tmp);
     return (-1);
   }
-  msg->path = safe_strdup (tmp);
+  msg->path = str_dup (tmp);
   return 0;
 }
 
@@ -61,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;