mirror of
https://github.com/curl/curl.git
synced 2025-01-30 14:22:33 +08:00
imap: Small tidy up of imap_select() to match imap_append()
Updated the style of imap_select() before adding the LIST command.
This commit is contained in:
parent
c29346613d
commit
b960f1e8bd
@ -701,10 +701,10 @@ static CURLcode imap_select(struct connectdata *conn)
|
||||
/* Make sure the mailbox is in the correct atom format */
|
||||
mailbox = imap_atom(imap->mailbox);
|
||||
if(!mailbox)
|
||||
result = CURLE_OUT_OF_MEMORY;
|
||||
else
|
||||
/* Send the SELECT command */
|
||||
result = imap_sendf(conn, "SELECT %s", mailbox);
|
||||
return CURLE_OUT_OF_MEMORY;
|
||||
|
||||
/* Send the SELECT command */
|
||||
result = imap_sendf(conn, "SELECT %s", mailbox);
|
||||
|
||||
Curl_safefree(mailbox);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user