mirror of
https://github.com/curl/curl.git
synced 2025-09-11 14:42:40 +03:00
multi: fix "Useless Assignment"
CodeSonar pointed out "This code assigns the variable the same value it
already had"
Follow-up to e77326403d
Closes #15441
This commit is contained in:
parent
b7a06dee50
commit
a273cc255f
|
@ -2303,7 +2303,6 @@ static CURLMcode state_do(struct Curl_easy *data,
|
||||||
/* keep connection open for application to use the socket */
|
/* keep connection open for application to use the socket */
|
||||||
connkeep(data->conn, "CONNECT_ONLY");
|
connkeep(data->conn, "CONNECT_ONLY");
|
||||||
multistate(data, MSTATE_DONE);
|
multistate(data, MSTATE_DONE);
|
||||||
result = CURLE_OK;
|
|
||||||
rc = CURLM_CALL_MULTI_PERFORM;
|
rc = CURLM_CALL_MULTI_PERFORM;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user