1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-24 09:08:49 -05:00

multi: remove two checks always true

Detected by Codacy
Closes #5676
This commit is contained in:
Daniel Stenberg 2020-07-12 18:26:35 +02:00
parent a88fe0fd14
commit 61a08508f6
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -1808,7 +1808,7 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
multistate(data, CURLM_STATE_SENDPROTOCONNECT); multistate(data, CURLM_STATE_SENDPROTOCONNECT);
} }
} }
else if(result) else
stream_error = TRUE; stream_error = TRUE;
break; break;
#endif #endif
@ -1858,7 +1858,7 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi,
multistate(data, CURLM_STATE_DO); multistate(data, CURLM_STATE_DO);
rc = CURLM_CALL_MULTI_PERFORM; rc = CURLM_CALL_MULTI_PERFORM;
} }
else if(result) { else {
/* failure detected */ /* failure detected */
Curl_posttransfer(data); Curl_posttransfer(data);
multi_done(data, result, TRUE); multi_done(data, result, TRUE);