X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=imap%2Fmx_imap.c;h=29abeecf4fe99662f6871060b8a70e3adac981d9;hb=1dc7032b59cc5b91d70076ed228bda8caf65a7f3;hp=4ad4bbbd3be4d11249127817ffb91666248ca627;hpb=bad8211c28d4b229878e0264012009493db48da5;p=apps%2Fmadmutt.git diff --git a/imap/mx_imap.c b/imap/mx_imap.c index 4ad4bbb..29abeec 100644 --- a/imap/mx_imap.c +++ b/imap/mx_imap.c @@ -9,13 +9,14 @@ #include +#include + #include "mutt.h" #include "imap_private.h" #include "mx.h" #include "mx_imap.h" -#include "lib/mem.h" #include "lib/str.h" #include "url.h" @@ -42,7 +43,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 +62,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 = p_new(mx_t, 1); /* make up mx_t record... */ fmt->type = M_IMAP;