X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=buffy.c;h=e259a11938deddb7751deb9c53cbe6d0e979a737;hp=ac8ef46af6e1d0ba5c92491303857ece9db8dc7b;hb=f5b0e714a215eddd4d9f8084b434b713f0a580b4;hpb=a8477ebaa09990b3688164cbe5cf661c4189541d diff --git a/buffy.c b/buffy.c index ac8ef46..e259a11 100644 --- a/buffy.c +++ b/buffy.c @@ -16,6 +16,7 @@ #include "mutt.h" #include "buffy.h" +#include "buffer.h" #include "mx.h" #include "mh.h" #include "sidebar.h" @@ -169,8 +170,8 @@ void buffy_update_mailbox (BUFFY * b) /* func to free buffy for list_del() */ static void buffy_free (BUFFY** p) { - FREE(&(*p)->path); - FREE(p); + mem_free(&(*p)->path); + mem_free(p); } int buffy_lookup (const char* path) { @@ -219,7 +220,7 @@ int buffy_parse_mailboxes (BUFFER * path, BUFFER * s, unsigned long data, } if (i < 0) { - tmp = safe_calloc (1, sizeof (BUFFY)); + tmp = mem_calloc (1, sizeof (BUFFY)); tmp->path = str_dup (buf); tmp->magic = 0; list_push_back (&Incoming, tmp);