summaryrefslogtreecommitdiff
path: root/libavutil/aes.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavutil/aes.c')
-rw-r--r--libavutil/aes.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavutil/aes.c b/libavutil/aes.c
index dc37162dee..c538521dd8 100644
--- a/libavutil/aes.c
+++ b/libavutil/aes.c
@@ -24,6 +24,8 @@
#include "aes.h"
typedef struct AVAES{
+ // Note: round_key[16] is accessed in the init code, but this only
+ // overwrites state, which does not matter (see also r7471).
uint8_t round_key[15][4][4];
uint8_t state[2][4][4];
int rounds;