summaryrefslogtreecommitdiffstats
path: root/crypto/engine
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-08-03 16:40:14 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-08-03 16:40:14 +0000
commit1acd042c8539608407926243b87e53825810d252 (patch)
treec3e1e153b87577f17e46beb5bdab1d55d1077db1 /crypto/engine
parent572712d82ab39b74660052d845365de0963c8ba8 (diff)
fix memory leak
Diffstat (limited to 'crypto/engine')
-rw-r--r--crypto/engine/eng_rsax.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/engine/eng_rsax.c b/crypto/engine/eng_rsax.c
index 82952356a5..985f4ed1ca 100644
--- a/crypto/engine/eng_rsax.c
+++ b/crypto/engine/eng_rsax.c
@@ -164,6 +164,7 @@ static int bind_helper(ENGINE *e)
e_rsax_rsa.rsa_priv_enc = meth1->rsa_priv_enc;
e_rsax_rsa.rsa_priv_dec = meth1->rsa_priv_dec;
e_rsax_rsa.bn_mod_exp = meth1->bn_mod_exp;
+ e_rsax_rsa.finish = meth1->finish;
#endif
return 1;
}