From: Dr. Stephen Henson Date: Mon, 10 Oct 2011 14:09:05 +0000 (+0000) Subject: fix leak properly this time... X-Git-Tag: OpenSSL_1_0_1-beta1~127 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=4874e235fb15891d0cf024d52ebcd758cfb83ece;p=oweals%2Fopenssl.git fix leak properly this time... --- diff --git a/crypto/engine/eng_rsax.c b/crypto/engine/eng_rsax.c index ef29f33edc..c73fb21995 100644 --- a/crypto/engine/eng_rsax.c +++ b/crypto/engine/eng_rsax.c @@ -307,12 +307,17 @@ static E_RSAX_MOD_CTX *e_rsax_get_ctx(RSA *rsa, int idx, BIGNUM* m) static int e_rsax_rsa_finish(RSA *rsa) { E_RSAX_MOD_CTX *hptr = RSA_get_ex_data(rsa, rsax_ex_data_idx); - if(!hptr) return 0; - - OPENSSL_free(hptr); - RSA_set_ex_data(rsa, rsax_ex_data_idx, NULL); - if (def_rsa_finish) - def_rsa_finish(rsa); + if(hptr) + { + OPENSSL_free(hptr); + RSA_set_ex_data(rsa, rsax_ex_data_idx, NULL); + } + if (rsa->_method_mod_n) + BN_MONT_CTX_free(rsa->_method_mod_n); + if (rsa->_method_mod_p) + BN_MONT_CTX_free(rsa->_method_mod_p); + if (rsa->_method_mod_q) + BN_MONT_CTX_free(rsa->_method_mod_q); return 1; }