From: Steve Holme Date: Tue, 5 Mar 2013 19:59:53 +0000 (+0000) Subject: imap: Small tidy up of imap_select() to match imap_append() X-Git-Tag: curl-7_30_0~194 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b960f1e8bd7b9549ed5b1aaed104f94dd8a06693;p=thirdparty%2Fcurl.git imap: Small tidy up of imap_select() to match imap_append() Updated the style of imap_select() before adding the LIST command. --- diff --git a/lib/imap.c b/lib/imap.c index 29784e9e82..9d39cc6d0e 100644 --- a/lib/imap.c +++ b/lib/imap.c @@ -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);