[FFmpeg-cvslog] vble: check packet size.
Michael Niedermayer
git at videolan.org
Thu Nov 29 23:24:40 CET 2012
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Nov 29 23:10:03 2012 +0100| [0b28abf903cd1fd61ba4a06009cd2cb7cc40e6e0] | committer: Michael Niedermayer
vble: check packet size.
Fixes null pointer dereference
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0b28abf903cd1fd61ba4a06009cd2cb7cc40e6e0
---
libavcodec/vble.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/libavcodec/vble.c b/libavcodec/vble.c
index 448006a..2c68178 100644
--- a/libavcodec/vble.c
+++ b/libavcodec/vble.c
@@ -127,6 +127,11 @@ static int vble_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
if (pic->data[0])
avctx->release_buffer(avctx, pic);
+ if (avpkt->size < 4 || avpkt->size - 4 > INT_MAX/8) {
+ av_log(avctx, AV_LOG_ERROR, "Invalid packet size\n");
+ return AVERROR_INVALIDDATA;
+ }
+
/* Allocate buffer */
if (avctx->get_buffer(avctx, pic) < 0) {
av_log(avctx, AV_LOG_ERROR, "Could not allocate buffer.\n");
More information about the ffmpeg-cvslog
mailing list