summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2012-09-15 08:46:31 +0000
committerAndy Polyakov <appro@openssl.org>2012-09-15 08:46:31 +0000
commitbc788830173a10023f567f959e434f74eceff694 (patch)
tree25021ad192b951fc10c39e125094fa0f07720239
parentf929f201fb7baf9887b777479d31c6cc35065cd9 (diff)
e_aes.c: uninitialized variable in aes_ccm_init_key [from HEAD].
PR: 2874 Submitted by: Tomas Mraz
-rw-r--r--crypto/evp/e_aes.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/evp/e_aes.c b/crypto/evp/e_aes.c
index 1e4af0cb75..e4d97dbebd 100644
--- a/crypto/evp/e_aes.c
+++ b/crypto/evp/e_aes.c
@@ -1217,6 +1217,7 @@ static int aes_ccm_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
vpaes_set_encrypt_key(key, ctx->key_len*8, &cctx->ks);
CRYPTO_ccm128_init(&cctx->ccm, cctx->M, cctx->L,
&cctx->ks, (block128_f)vpaes_encrypt);
+ cctx->str = NULL;
cctx->key_set = 1;
break;
}