summaryrefslogtreecommitdiffstats
path: root/crypto/ec/ecp_nistp256.c
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2016-01-13 21:26:00 -0500
committerRich Salz <rsalz@openssl.org>2016-01-13 22:01:02 -0500
commit2c52ac9bfefa813bfef864ff35e3d2afb8dbdae9 (patch)
treea6c30159a268bc7114bd75fe646e71bb06fdae4c /crypto/ec/ecp_nistp256.c
parent9aa00b187a65b1f30789d6274ec31ea86efe7973 (diff)
Call single parent free_comp routine.
Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
Diffstat (limited to 'crypto/ec/ecp_nistp256.c')
-rw-r--r--crypto/ec/ecp_nistp256.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/ec/ecp_nistp256.c b/crypto/ec/ecp_nistp256.c
index 11bde8a50f..9db5ffa7f2 100644
--- a/crypto/ec/ecp_nistp256.c
+++ b/crypto/ec/ecp_nistp256.c
@@ -2184,8 +2184,7 @@ int ec_GFp_nistp256_precompute_mult(EC_GROUP *group, BN_CTX *ctx)
felem x_tmp, y_tmp, z_tmp;
/* throw away old precomputation */
- EC_nistp256_pre_comp_free(group->pre_comp.nistp256);
- group->pre_comp.nistp256 = NULL;
+ EC_pre_comp_free(group);
if (ctx == NULL)
if ((ctx = new_ctx = BN_CTX_new()) == NULL)
return 0;