aboutsummaryrefslogtreecommitdiff
path: root/lib/imap.c
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2013-03-07 18:21:58 +0000
committerSteve Holme <steve_holme@hotmail.com>2013-03-07 18:21:58 +0000
commit67b6fa5f95e4e938ad0b0209d42c148ef29c04d2 (patch)
treeb182c6184a810b041eb3a394a5e04d681a4549b4 /lib/imap.c
parent3df1e3583881af7714c6992cba4f8881a33265cf (diff)
email: Optimised block_statemach() functions
Optimised the result test in each of the block_statemach() functions.
Diffstat (limited to 'lib/imap.c')
-rw-r--r--lib/imap.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/imap.c b/lib/imap.c
index 186ff63f6..66dede9db 100644
--- a/lib/imap.c
+++ b/lib/imap.c
@@ -1685,10 +1685,8 @@ static CURLcode imap_block_statemach(struct connectdata *conn)
CURLcode result = CURLE_OK;
struct imap_conn *imapc = &conn->proto.imapc;
- while(imapc->state != IMAP_STOP) {
+ while(imapc->state != IMAP_STOP && !result) {
result = Curl_pp_statemach(&imapc->pp, TRUE);
- if(result)
- break;
}
return result;