1
0
Fork 0

Fix use after free in DRMProcessorClientImpl::sendHTTPRequest()

This commit is contained in:
Grégory Soutadé 2024-01-24 19:13:22 +01:00
parent ef8c2644ca
commit 68bf982b6f
2 changed files with 5 additions and 4 deletions

View File

@ -37,7 +37,7 @@
#define ACS_SERVER "http://adeactivate.adobe.com/adept"
#endif
#define LIBGOUROU_VERSION "0.8.4"
#define LIBGOUROU_VERSION "0.8.5"
namespace gourou
{

View File

@ -298,14 +298,15 @@ std::string DRMProcessorClientImpl::sendHTTPRequest(const std::string& URL, cons
}
curl_slist_free_all(list);
long http_code = 400;
curl_easy_getinfo (curl, CURLINFO_RESPONSE_CODE, &http_code);
curl_easy_cleanup(curl);
if (res != CURLE_OK)
EXCEPTION(gourou::CLIENT_NETWORK_ERROR, "Error " << curl_easy_strerror(res));
long http_code = 400;
curl_easy_getinfo (curl, CURLINFO_RESPONSE_CODE, &http_code);
if (http_code >= 400)
EXCEPTION(gourou::CLIENT_HTTP_ERROR, "HTTP Error code " << http_code);