diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/crypto_native/aes_gcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/crypto_native/aes_gcm.c b/src/plugins/crypto_native/aes_gcm.c index e0c1e6c12c3..09bb06f1994 100644 --- a/src/plugins/crypto_native/aes_gcm.c +++ b/src/plugins/crypto_native/aes_gcm.c @@ -978,7 +978,7 @@ aes_gcm_dec (u8x16 T, aes_gcm_key_data_t * kd, aes_gcm_counter_t * ctr, n_left - 64, f); return aes4_gcm_calc (T, kd, d4, ctr, inv, outv, rounds, 1, n_left, f); #else - u8x16 d[4]; + u8x16 d[4] = {}; while (n_left >= 128) { T = aes_gcm_calc_double (T, kd, d, ctr, inv, outv, rounds, f); |