Browse Source

aac_parser: add required padding for GetBitContext buffer

Fixes stack buffer overflow errors detected by address sanitizer in
various fate tests.

CC: libav-stable@libav.org
tags/n2.4.11
Janne Grunau 10 years ago
parent
commit
02477323b9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/aac_parser.c

+ 1
- 1
libavcodec/aac_parser.c View File

@@ -34,7 +34,7 @@ static int aac_sync(uint64_t state, AACAC3ParseContext *hdr_info,
int size;
union {
uint64_t u64;
uint8_t u8[8];
uint8_t u8[8 + FF_INPUT_BUFFER_PADDING_SIZE];
} tmp;

tmp.u64 = av_be2ne64(state);


Loading…
Cancel
Save