mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-04 17:00:11 -05:00
Fix BIO memory leak
This commit is contained in:
parent
5da62de5ef
commit
aa158e40ec
@ -416,6 +416,7 @@ int pkcs7_sign_content(PKCS7 *p7, const u_char *data, int len)
|
|||||||
(void)BIO_flush(p7bio);
|
(void)BIO_flush(p7bio);
|
||||||
if (!PKCS7_dataFinal(p7, p7bio)) {
|
if (!PKCS7_dataFinal(p7, p7bio)) {
|
||||||
printf("PKCS7_dataFinal failed\n");
|
printf("PKCS7_dataFinal failed\n");
|
||||||
|
BIO_free_all(p7bio);
|
||||||
return 0; /* FAILED */
|
return 0; /* FAILED */
|
||||||
}
|
}
|
||||||
BIO_free_all(p7bio);
|
BIO_free_all(p7bio);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user