Commit bacb1020 authored by michael's avatar michael

correct last element inited check


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9018 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 3b50f3be
......@@ -128,7 +128,7 @@ int av_aes_init(AVAES *a, const uint8_t *key, int key_bits, int decrypt) {
uint8_t log8[256];
uint8_t alog8[512];
if(!enc_multbl[4][1023]){
if(!enc_multbl[0][sizeof(enc_multbl)/sizeof(enc_multbl[0][0])-1]){
j=1;
for(i=0; i<255; i++){
alog8[i]=
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment