X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=lib.c;h=eee11e5cb3d5e875b9133dcefcab1437515e96d7;hp=e683c6d37b73241feec307097b103bdcd914e674;hb=617e7d83d14e14e6a520a48e75437211b16c8834;hpb=49f1156410e9a037404101696d37b2c0d5c67564 diff --git a/lib.c b/lib.c index e683c6d..eee11e5 100644 --- a/lib.c +++ b/lib.c @@ -38,7 +38,6 @@ #include "lib.h" -#include "lib/mem.h" #include "lib/str.h" #include "lib/debug.h" @@ -435,7 +434,7 @@ char *mutt_read_line(char *s, size_t * size, FILE * fp, int *line) /* There wasn't room for the line -- increase ``s'' */ offset = *size - 1; /* overwrite the terminating 0 */ *size += STRING; - mem_realloc (&s, *size); + p_realloc(&s, *size); } } }