From: Daniel Stenberg Date: Sat, 11 Oct 2025 21:34:45 +0000 (+0200) Subject: lib1514: fix return code mixup X-Git-Tag: rc-8_17_0-2~109 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d03a6b79b45921dead4d7848696bd1f1910d5970;p=thirdparty%2Fcurl.git lib1514: fix return code mixup Reported-by: Joshua Rogers Closes #19027 --- diff --git a/tests/libtest/lib1514.c b/tests/libtest/lib1514.c index 265f47af08..fc7e33e3d3 100644 --- a/tests/libtest/lib1514.c +++ b/tests/libtest/lib1514.c @@ -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; }