From df57e42baa0c1c8a97035adb9ffb2f335158c440 Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Mon, 9 Feb 2015 11:46:19 +0100 Subject: [PATCH] evp/e_aes.c: fix SPARC T4-specific problem: - SIGSEGV/ILL in CCM (RT#3688); Reviewed-by: Matt Caswell --- crypto/evp/e_aes.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crypto/evp/e_aes.c b/crypto/evp/e_aes.c index 41844bcabc..8161b26325 100644 --- a/crypto/evp/e_aes.c +++ b/crypto/evp/e_aes.c @@ -790,6 +790,8 @@ static int aes_t4_ccm_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, default: return 0; } +# else + cctx->str = NULL; # endif cctx->key_set = 1; } -- 2.25.1