mirror of
https://github.com/curl/curl.git
synced 2026-08-24 22:43:38 +03:00
tidy-up: rename more CURLcode variables to result
Follow-up to 885b553545 #21348
Closes #21676
This commit is contained in:
parent
1fb734bc2d
commit
000de81fb1
11 changed files with 277 additions and 274 deletions
|
|
@ -486,9 +486,9 @@ static CURLMcode mev_assess(struct Curl_multi *multi,
|
|||
|
||||
Curl_pollset_init(&ps);
|
||||
if(conn) {
|
||||
CURLcode r = Curl_conn_adjust_pollset(data, conn, &ps);
|
||||
if(r) {
|
||||
mresult = (r == CURLE_OUT_OF_MEMORY) ?
|
||||
CURLcode result = Curl_conn_adjust_pollset(data, conn, &ps);
|
||||
if(result) {
|
||||
mresult = (result == CURLE_OUT_OF_MEMORY) ?
|
||||
CURLM_OUT_OF_MEMORY : CURLM_INTERNAL_ERROR;
|
||||
goto out;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue