[FFmpeg-cvslog] avcodec/faxcompr: Add missing runs check in decode_uncompressed()
Michael Niedermayer
git at videolan.org
Thu Nov 5 21:51:55 CET 2015
ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Thu Nov 5 21:35:23 2015 +0100| [d4a731b84a08f0f3839eaaaf82e97d8d9c67da46] | committer: Michael Niedermayer
avcodec/faxcompr: Add missing runs check in decode_uncompressed()
Fixes out of array access
Fixes: 54e488b9da4abbceaf405d6492515697/asan_heap-oob_32769b0_160_a8755eb08ee8f9579348501945a33955.TIF
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d4a731b84a08f0f3839eaaaf82e97d8d9c67da46
---
libavcodec/faxcompr.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/libavcodec/faxcompr.c b/libavcodec/faxcompr.c
index 80df418..2a1d2bc 100644
--- a/libavcodec/faxcompr.c
+++ b/libavcodec/faxcompr.c
@@ -189,6 +189,10 @@ static int decode_uncompressed(AVCodecContext *avctx, GetBitContext *gb,
*mode = !*mode;
if (newmode != *mode) { //FIXME CHECK
*(*runs)++ = 0;
+ if (*runs >= runend) {
+ av_log(avctx, AV_LOG_ERROR, "uncompressed run overrun\n");
+ return AVERROR_INVALIDDATA;
+ }
*mode = newmode;
}
return 0;
More information about the ffmpeg-cvslog
mailing list