1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

imap: Don't call imap_atom() when no mailbox specified in LIST command

This commit is contained in:
Steve Holme 2015-11-06 21:49:26 +00:00
parent 748ffc77c6
commit 505d966850

View File

@ -653,8 +653,8 @@ static CURLcode imap_perform_list(struct connectdata *conn)
result = imap_sendf(conn, "%s%s", imap->custom, result = imap_sendf(conn, "%s%s", imap->custom,
imap->custom_params ? imap->custom_params : ""); imap->custom_params ? imap->custom_params : "");
else { else {
/* Make sure the mailbox is in the correct atom format */ /* Make sure the mailbox is in the correct atom format if necessary */
mailbox = imap_atom(imap->mailbox ? imap->mailbox : ""); mailbox = imap->mailbox ? imap_atom(imap->mailbox) : "";
if(!mailbox) if(!mailbox)
return CURLE_OUT_OF_MEMORY; return CURLE_OUT_OF_MEMORY;