X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=imap%2Fauth.c;h=6ec3c1b4fe11a6db33a2019ed8b76add8566fdbc;hb=666a29207bb781f47ec85f6a3c3cdeb554b30c21;hp=448220ea31ed5959601e6f3a912c7a2a4793ceea;hpb=814a01519c9605d479201b99eb16c97b0ad8635d;p=apps%2Fmadmutt.git diff --git a/imap/auth.c b/imap/auth.c index 448220e..6ec3c1b 100644 --- a/imap/auth.c +++ b/imap/auth.c @@ -53,7 +53,7 @@ int imap_authenticate (IMAP_DATA * idata) if (ImapAuthenticators && *ImapAuthenticators) { /* Try user-specified list of authentication methods */ - methods = safe_strdup (ImapAuthenticators); + methods = str_dup (ImapAuthenticators); for (method = methods; method; method = delim) { delim = strchr (method, ':'); @@ -70,7 +70,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 +78,7 @@ int imap_authenticate (IMAP_DATA * idata) } } - FREE (&methods); + mem_free (&methods); } else { /* Fall back to default: any authenticator */