lib1514: fix return code mixup

Reported-by: Joshua Rogers
Closes #19027
This commit is contained in:
Daniel Stenberg 2025-10-11 23:34:45 +02:00
parent 1648f23ed3
commit d03a6b79b4
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2

View file

@ -55,7 +55,6 @@ static size_t t1514_read_cb(char *ptr, size_t size, size_t nmemb, void *userp)
static CURLcode test_lib1514(const char *URL)
{
CURL *curl;
CURLcode result = CURLE_OK;
CURLcode res = CURLE_OK;
static char testdata[] = "dummy";
@ -77,12 +76,12 @@ static CURLcode test_lib1514(const char *URL)
easy_setopt(curl, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0);
}
result = curl_easy_perform(curl);
res = curl_easy_perform(curl);
test_cleanup:
curl_easy_cleanup(curl);
curl_global_cleanup();
return result;
return res;
}