[FFmpeg-cvslog] eamad: fix out of array accesses
Michael Niedermayer
git at videolan.org
Mon Dec 3 21:14:38 CET 2012
ffmpeg | branch: release/1.0 | Michael Niedermayer <michaelni at gmx.at> | Sat Nov 17 16:26:55 2012 +0100| [c8833a13cf530fbf5b1d579cd1ae527a0904403f] | 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>
(cherry picked from commit 63ac64864c6e0e84355aa3caa5b92208997a9a8d)
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c8833a13cf530fbf5b1d579cd1ae527a0904403f
---
libavcodec/eamad.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/eamad.c b/libavcodec/eamad.c
index b338240..47a9231 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