summaryrefslogtreecommitdiffstats
path: root/crypto/engine
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-08-03 16:39:58 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-08-03 16:39:58 +0000
commit8a8cc84f745c84dcb79c8eee3aa0c10e53c0bc6a (patch)
tree6ec7f5dbd8bdae0966af855a3e3abda92a8bd6a7 /crypto/engine
parent28dd49faecf567bd946503dd4e3aa65985e659dd (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 72185d686b..3ac265cf7d 100644
--- a/crypto/engine/eng_rsax.c
+++ b/crypto/engine/eng_rsax.c
@@ -163,6 +163,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;
}