Check data_size in decode_frame_mp3on4().
authorMichael Niedermayer <michaelni@gmx.at>
Wed, 23 Sep 2009 11:33:44 +0000 (11:33 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Wed, 23 Sep 2009 11:33:44 +0000 (11:33 +0000)
Originally committed as revision 19987 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/mpegaudiodec.c

index 6f451c3..3003e18 100644 (file)
@@ -2466,6 +2466,9 @@ static int decode_frame_mp3on4(AVCodecContext * avctx,
     OUT_INT *outptr, *bp;
     int fr, j, n;
 
+    if(*data_size < MPA_FRAME_SIZE * MPA_MAX_CHANNELS * s->frames * sizeof(OUT_INT))
+        return -1;
+
     *data_size = 0;
     // Discard too short frames
     if (buf_size < HEADER_SIZE)