2
0
mirror of https://github.com/openssl/openssl.git synced 2025-03-31 20:10:45 +08:00

Fix a memory leak in an error path

Found by Coverity.

Reviewed-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/5336)
This commit is contained in:
Matt Caswell 2018-02-12 16:58:33 +00:00
parent d8e2b4f9bf
commit 62542d0464

@ -51,6 +51,7 @@ RSA_PRIME_INFO *rsa_multip_info_new(void)
BN_free(pinfo->d);
BN_free(pinfo->t);
BN_free(pinfo->pp);
OPENSSL_free(pinfo);
return NULL;
}