[FFmpeg-cvslog] avcodec/rawdec: Check the return code of avpicture_get_size()

Michael Niedermayer git at videolan.org
Tue Jan 6 19:35:25 CET 2015


ffmpeg | branch: release/2.3 | Michael Niedermayer <michaelni at gmx.at> | Wed Nov 26 18:56:39 2014 +0100| [e0822b147f25e56c65b48b7717eaa68f249346eb] | committer: Michael Niedermayer

avcodec/rawdec: Check the return code of avpicture_get_size()

Fixes out of array access
Fixes: asan_heap-oob_22388d0_3435_cov_3297128910_small_roll5_FlashCine1.cine
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
(cherry picked from commit 1d3a3b9f8907625b361420d48fe05716859620ff)

Conflicts:

	libavcodec/rawdec.c

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e0822b147f25e56c65b48b7717eaa68f249346eb
---

 libavcodec/rawdec.c |    3 +++
 1 file changed, 3 insertions(+)

diff --git a/libavcodec/rawdec.c b/libavcodec/rawdec.c
index ee1f397..04fd68f 100644
--- a/libavcodec/rawdec.c
+++ b/libavcodec/rawdec.c
@@ -117,6 +117,9 @@ static av_cold int raw_init_decoder(AVCodecContext *avctx)
         context->frame_size = avpicture_get_size(avctx->pix_fmt, avctx->width,
                                                  avctx->height);
     }
+    if (context->frame_size < 0)
+        return context->frame_size;
+
 
     if ((avctx->extradata_size >= 9 &&
          !memcmp(avctx->extradata + avctx->extradata_size - 9, "BottomUp", 9)) ||



More information about the ffmpeg-cvslog mailing list