[FFmpeg-cvslog] jvdec: check videosize

Michael Niedermayer git at videolan.org
Sat Jun 9 21:05:14 CEST 2012


ffmpeg | branch: release/0.10 | Michael Niedermayer <michaelni at gmx.at> | Mon May 28 17:21:29 2012 +0200| [3e4eea6c3255ccbb059db6d5998147597e9ceccd] | committer: Michael Niedermayer

jvdec: check videosize

Fixes null ptr dereference
fixes Ticket1364

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
(cherry picked from commit b4904e804d3b1c56ac4f5d3386b15daae98fca2d)

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

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

 libavcodec/jvdec.c |    4 ++++
 1 file changed, 4 insertions(+)

diff --git a/libavcodec/jvdec.c b/libavcodec/jvdec.c
index bdffa76..6267421 100644
--- a/libavcodec/jvdec.c
+++ b/libavcodec/jvdec.c
@@ -143,6 +143,10 @@ static int decode_frame(AVCodecContext *avctx,
     buf += 5;
 
     if (video_size) {
+        if(video_size < 0) {
+            av_log(avctx, AV_LOG_ERROR, "video size %d invalid\n", video_size);
+            return AVERROR_INVALIDDATA;
+        }
         if (avctx->reget_buffer(avctx, &s->frame) < 0) {
             av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
             return -1;



More information about the ffmpeg-cvslog mailing list