From 4b6027a4f78272b6d5eb5e0966ac398ac5e5c232 Mon Sep 17 00:00:00 2001 From: olszomal Date: Mon, 8 May 2023 14:32:58 +0200 Subject: [PATCH] Fix CURLINFO_RESPONSE_CODE --- osslsigncode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osslsigncode.c b/osslsigncode.c index 390b9e7..c490bac 100644 --- a/osslsigncode.c +++ b/osslsigncode.c @@ -644,7 +644,7 @@ static BIO *bio_get_http(long *http_code, char *url, BIO *bout, char *proxy, } else { /* CURLE_OK (0) */ (void)BIO_flush(bin); - curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &http_code); + curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, http_code); } /* End a libcurl easy handle */ curl_easy_cleanup(curl);