X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=imap%2Fauth.c;h=23473e192c5d56589a2a0a00075f2e5bc27dba36;hp=f5af43f9726dac031a76de6b65b92a2555ce885e;hb=bbc4fd52516a8afefbd14c77e34f8389d6f0a6ed;hpb=a8477ebaa09990b3688164cbe5cf661c4189541d diff --git a/imap/auth.c b/imap/auth.c index f5af43f..23473e1 100644 --- a/imap/auth.c +++ b/imap/auth.c @@ -20,6 +20,7 @@ #include "lib/debug.h" #include "mutt.h" +#include "ascii.h" #include "imap_private.h" #include "auth.h" @@ -70,7 +71,7 @@ int imap_authenticate (IMAP_DATA * idata) !ascii_strcasecmp (authenticator->method, method)) if ((r = authenticator->authenticate (idata, method)) != IMAP_AUTH_UNAVAIL) { - FREE (&methods); + mem_free (&methods); return r; } @@ -78,7 +79,7 @@ int imap_authenticate (IMAP_DATA * idata) } } - FREE (&methods); + mem_free (&methods); } else { /* Fall back to default: any authenticator */