tidy-up: rename more CURLcode variables to result

Follow-up to 885b553545 #21348

Closes #21676
This commit is contained in:
Viktor Szakats 2026-05-19 14:49:28 +02:00
parent 1fb734bc2d
commit 000de81fb1
No known key found for this signature in database
11 changed files with 277 additions and 274 deletions

View file

@ -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;
}