summaryrefslogtreecommitdiffstats
path: root/crypto/evp/pmeth_lib.c
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2015-09-04 08:13:19 -0400
committerRich Salz <rsalz@openssl.org>2015-09-04 11:45:44 -0400
commita939b0aab5deb3678308df804d25a340240deee5 (patch)
tree85103a8ee9dd6da3a4b40b56c8dda900ee50a09b /crypto/evp/pmeth_lib.c
parent47bbaa5b607f592009ed40f5678fde21c10a873c (diff)
More zalloc nits
Found on GitHub by dimman Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/evp/pmeth_lib.c')
-rw-r--r--crypto/evp/pmeth_lib.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/crypto/evp/pmeth_lib.c b/crypto/evp/pmeth_lib.c
index a2d8382de3..cff3dd245a 100644
--- a/crypto/evp/pmeth_lib.c
+++ b/crypto/evp/pmeth_lib.c
@@ -180,7 +180,6 @@ static EVP_PKEY_CTX *int_ctx_new(EVP_PKEY *pkey, ENGINE *e, int id)
ret->pkey = pkey;
if (pkey)
CRYPTO_add(&pkey->references, 1, CRYPTO_LOCK_EVP_PKEY);
- ret->data = NULL;
if (pmeth->init) {
if (pmeth->init(ret) <= 0) {