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:13 +0000
commitb0513fd2bb921411709004de636685e9474c3e8c (patch)
tree1965568a653c55003d63ef72018b1d1191ed5004 /crypto
parentc10e3f0cffb3820da64a3f822cca96239efe4369 (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)