Fix memory leak, CID 1519392

This commit is contained in:
olszomal 2023-01-13 09:40:52 +01:00 committed by Michał Trojnara
parent a862378280
commit dadca2516d

View File

@ -1079,6 +1079,16 @@ static int add_timestamp(PKCS7 *sig, char *url, char *proxy, int rfc3161,
if (!url)
return 1; /* FAILED */
/* Encode timestamp request */
if (rfc3161) {
bout = encode_rfc3161_request(sig, md);
} else {
bout = encode_authenticode_request(sig);
}
if (!bout)
return 1; /* FAILED */
/* Start a libcurl easy session and set options for a curl easy handle */
curl = curl_easy_init();
if (proxy) {
@ -1128,14 +1138,6 @@ static int add_timestamp(PKCS7 *sig, char *url, char *proxy, int rfc3161,
printf("CURL failure: %s %s\n", curl_easy_strerror(res), url);
}
/* Encode timestamp request */
if (rfc3161) {
bout = encode_rfc3161_request(sig, md);
} else {
bout = encode_authenticode_request(sig);
}
if (!bout)
return 1; /* FAILED */
len = BIO_get_mem_data(bout, &p);
res = curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, len);
if (res != CURLE_OK) {