mirror of
https://github.com/curl/curl.git
synced 2026-04-18 17:01:59 +03: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
1 changed files with 4 additions and 4 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue