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:
Steve Holme 2013-03-05 19:59:53 +00:00
parent c29346613d
commit b960f1e8bd
1 changed files with 4 additions and 4 deletions

View File

@ -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);