summaryrefslogtreecommitdiffstats
path: root/providers/implementations/ciphers/cipher_tdes_default_hw.c
diff options
context:
space:
mode:
Diffstat (limited to 'providers/implementations/ciphers/cipher_tdes_default_hw.c')
-rw-r--r--providers/implementations/ciphers/cipher_tdes_default_hw.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/providers/implementations/ciphers/cipher_tdes_default_hw.c b/providers/implementations/ciphers/cipher_tdes_default_hw.c
index 53cbbad571..ccdf3941c8 100644
--- a/providers/implementations/ciphers/cipher_tdes_default_hw.c
+++ b/providers/implementations/ciphers/cipher_tdes_default_hw.c
@@ -99,7 +99,8 @@ static int ossl_cipher_hw_tdes_cfb1(PROV_CIPHER_CTX *ctx, unsigned char *out,
{
PROV_TDES_CTX *tctx = (PROV_TDES_CTX *)ctx;
size_t n;
- unsigned char c[1], d[1];
+ unsigned char c[1];
+ unsigned char d[1] = { 0 };
if (ctx->use_bits == 0)
inl *= 8;