exit mem_realloc, enters p_realloc/xrealloc.
[apps/madmutt.git] / nntp / mx_nntp.c
index 5229a1d..84a9d64 100644 (file)
@@ -9,13 +9,14 @@
 
 #include <sys/stat.h>
 
+#include <lib-lib/mem.h>
+
 #include "mutt.h"
 #include "nntp.h"
 
 #include "mx.h"
 #include "mx_nntp.h"
 
-#include "lib/mem.h"
 #include "lib/str.h"
 
 #include "url.h"
@@ -40,7 +41,7 @@ static int acl_check_nntp (CONTEXT* ctx, int bit) {
 
 /* called by nntp_init(); don't call elsewhere */
 mx_t* nntp_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_NNTP;