X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=muttlib.c;h=bb48e07ad38395a1b8e02b0c23493fc9c275e2b1;hp=0e4027aa42dd65a82d5dc2035c18d35c299900a3;hb=308c7080ccca40d4865d8810f5528331d9ed61ff;hpb=b3cb6ed8d36c550a2e589910ce51bbc8352ff57c diff --git a/muttlib.c b/muttlib.c index 0e4027a..bb48e07 100644 --- a/muttlib.c +++ b/muttlib.c @@ -13,6 +13,7 @@ #endif #include +#include #include "mutt.h" #include "ascii.h" @@ -34,8 +35,6 @@ #include "mutt_crypt.h" -#include "lib/mem.h" -#include "lib/intl.h" #include "lib/str.h" #include "lib/debug.h" @@ -1335,7 +1334,7 @@ int mutt_match_spam_list (const char *s, SPAM_LIST * l, char *text, int x) for (; l; l = l->next) { /* If this pattern needs more matches, expand pmatch. */ if (l->nmatch > nmatch) { - mem_realloc (&pmatch, l->nmatch * sizeof (regmatch_t)); + p_realloc(&pmatch, l->nmatch); nmatch = l->nmatch; }