[FFmpeg-cvslog] eamad: fix out of array accesses
Michael Niedermayer
git at videolan.org
Sat Nov 17 19:28:13 CET 2012
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sat Nov 17 16:26:55 2012 +0100| [63ac64864c6e0e84355aa3caa5b92208997a9a8d] | committer: Michael Niedermayer
eamad: fix out of array accesses
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=63ac64864c6e0e84355aa3caa5b92208997a9a8d
---
libavcodec/eamad.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/eamad.c b/libavcodec/eamad.c
index 2805195..e38650e 100644
--- a/libavcodec/eamad.c
+++ b/libavcodec/eamad.c
@@ -237,7 +237,7 @@ static int decode_frame(AVCodecContext *avctx,
int chunk_type;
int inter;
- if (buf_size < 17) {
+ if (buf_size < 26) {
av_log(avctx, AV_LOG_ERROR, "Input buffer too small\n");
*data_size = 0;
return -1;
More information about the ffmpeg-cvslog
mailing list