[FFmpeg-cvslog] wavpack: validate samples size parsed in wavpack_decode_block

Luca Barbato git at videolan.org
Sun May 19 10:46:03 CEST 2013


ffmpeg | branch: master | Luca Barbato <lu_zero at gentoo.org> | Fri May 17 18:29:15 2013 +0200| [ed50673066956d6f2201a57c3254569f2ab08d9d] | committer: Luca Barbato

wavpack: validate samples size parsed in wavpack_decode_block

Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
CC: libav-stable at libav.org

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

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

diff --git a/libavcodec/wavpack.c b/libavcodec/wavpack.c
index 38fc26b..8d7c82b 100644
--- a/libavcodec/wavpack.c
+++ b/libavcodec/wavpack.c
@@ -796,6 +796,9 @@ static int wavpack_decode_block(AVCodecContext *avctx, int block_no,
     if (!wc->mkv_mode) {
         s->samples = AV_RL32(buf);
         buf       += 4;
+        if (s->samples != wc->samples)
+            return AVERROR_INVALIDDATA;
+
         if (!s->samples) {
             *got_frame_ptr = 0;
             return 0;



More information about the ffmpeg-cvslog mailing list