projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0247732
)
ac3_parser: add required padding for GetBitContext buffer
author
Janne Grunau
<janne-libav@jannau.net>
Mon, 8 Jun 2015 12:48:26 +0000
(14:48 +0200)
committer
Janne Grunau
<janne-libav@jannau.net>
Wed, 8 Jul 2015 21:37:51 +0000
(23:37 +0200)
Fixes stack buffer overflow errors detected by address sanitizer in
various fate tests.
CC: libav-stable@libav.org
libavcodec/ac3_parser.c
patch
|
blob
|
history
diff --git
a/libavcodec/ac3_parser.c
b/libavcodec/ac3_parser.c
index
5ea09f8
..
69d88c1
100644
(file)
--- a/
libavcodec/ac3_parser.c
+++ b/
libavcodec/ac3_parser.c
@@
-150,7
+150,7
@@
static int ac3_sync(uint64_t state, AACAC3ParseContext *hdr_info,
int err;
union {
uint64_t u64;
- uint8_t u8[8];
+ uint8_t u8[8
+ FF_INPUT_BUFFER_PADDING_SIZE
];
} tmp = { av_be2ne64(state) };
AC3HeaderInfo hdr;
GetBitContext gbc;