we don't use strdup in mutt sources anymore, remove that compat file
[apps/madmutt.git] / history.c
index 2976633..215a0ef 100644 (file)
--- a/history.c
+++ b/history.c
@@ -15,7 +15,6 @@
 
 #include "mutt.h"
 #include "history.h"
-#include "lib/mem.h"
 
 /* global vars used for the string-history routines */
 
@@ -41,7 +40,7 @@ static void init_history (struct history *h)
   }
 
   if (HistSize)
-    h->hist = mem_calloc (HistSize, sizeof (char *));
+    h->hist = p_new(char *, HistSize);
 
   h->cur = 0;
   h->last = 0;