From 20ff8a0988d844910ff3621f75f99907aebeef4b Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 13 Jul 2012 14:12:39 +0200 Subject: ftp_do_more: add missing check of return code Spotted by clang-analyzer. The return code was never checked, just stored. --- lib/ftp.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'lib/ftp.c') diff --git a/lib/ftp.c b/lib/ftp.c index 3a494535d..438ccfc0f 100644 --- a/lib/ftp.c +++ b/lib/ftp.c @@ -3674,8 +3674,11 @@ static CURLcode ftp_do_more(struct connectdata *conn, bool *complete) /* It looks data connection is established */ result = AcceptServerConnect(conn); ftpc->wait_data_conn = FALSE; - if(result == CURLE_OK) + if(!result) result = InitiateTransfer(conn); + + if(result) + return result; } } else if(data->set.upload) { -- cgit v1.2.3