mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-05 01:00:11 -05:00
Fix memory leak, CID 1519392
This commit is contained in:
parent
a862378280
commit
dadca2516d
@ -1079,6 +1079,16 @@ static int add_timestamp(PKCS7 *sig, char *url, char *proxy, int rfc3161,
|
|||||||
|
|
||||||
if (!url)
|
if (!url)
|
||||||
return 1; /* FAILED */
|
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 */
|
/* Start a libcurl easy session and set options for a curl easy handle */
|
||||||
curl = curl_easy_init();
|
curl = curl_easy_init();
|
||||||
if (proxy) {
|
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);
|
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);
|
len = BIO_get_mem_data(bout, &p);
|
||||||
res = curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, len);
|
res = curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, len);
|
||||||
if (res != CURLE_OK) {
|
if (res != CURLE_OK) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user