summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2013-11-06 13:16:50 +0000
committerDr. Stephen Henson <steve@openssl.org>2013-11-06 13:19:23 +0000
commit834d30bc6355b6518ed368487fd3eeba9461dc57 (patch)
treebacb9c0a176ca687e96554caef46604fda2d6269 /crypto
parente26faa9e0c3633473591eed7762287f4d3fda312 (diff)
Initialise context before using it.
(cherry picked from commit a4947e4e064d2d5bb622ac64cf13edc4a46ed196)
Diffstat (limited to 'crypto')
-rw-r--r--crypto/evp/p5_crpt2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/evp/p5_crpt2.c b/crypto/evp/p5_crpt2.c
index 9409a82327..cf26085c1a 100644
--- a/crypto/evp/p5_crpt2.c
+++ b/crypto/evp/p5_crpt2.c
@@ -91,7 +91,7 @@ int PKCS5_PBKDF2_HMAC(const char *pass, int passlen,
if (mdlen < 0)
return 0;
- HMAC_CTX_init(&hctx);
+ HMAC_CTX_init(&hctx_tpl);
p = out;
tkeylen = keylen;
if(!pass)