X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=buffy.c;h=59852c85b801ed882bdfa227acd99685c59a04f6;hp=ac8ef46af6e1d0ba5c92491303857ece9db8dc7b;hb=47a98766051a91ceb5e60f7ff5eedc40ea161d61;hpb=a8477ebaa09990b3688164cbe5cf661c4189541d diff --git a/buffy.c b/buffy.c index ac8ef46..59852c8 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); @@ -505,9 +506,6 @@ int buffy_list (void) int have_unnotified = BuffyNotify; int i = 0; - if (option (OPTFORCEBUFFYCHECK)) - buffy_check (1); - pos = 0; first = 1; buffylist[0] = 0;