[FFmpeg-cvslog] avformat/ipmovie: Check palette size in OPCODE_SET_PALETTE
Michael Niedermayer
git at videolan.org
Thu Dec 19 00:47:17 CET 2013
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Wed Dec 18 23:46:37 2013 +0100| [4e575adeff316b351bc777a24d4b6beb5ac58cb2] | committer: Michael Niedermayer
avformat/ipmovie: Check palette size in OPCODE_SET_PALETTE
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4e575adeff316b351bc777a24d4b6beb5ac58cb2
---
libavformat/ipmovie.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/libavformat/ipmovie.c b/libavformat/ipmovie.c
index 3c53686..4a766ef 100644
--- a/libavformat/ipmovie.c
+++ b/libavformat/ipmovie.c
@@ -465,7 +465,8 @@ static int process_ipmovie_chunk(IPMVEContext *s, AVIOContext *pb,
first_color = AV_RL16(&scratch[0]);
last_color = first_color + AV_RL16(&scratch[2]) - 1;
/* sanity check (since they are 16 bit values) */
- if ((first_color > 0xFF) || (last_color > 0xFF)) {
+ if ( (first_color > 0xFF) || (last_color > 0xFF)
+ || (last_color - first_color + 1)*3 + 4 > opcode_size) {
av_dlog(NULL, "demux_ipmovie: set_palette indexes out of range (%d -> %d)\n",
first_color, last_color);
chunk_type = CHUNK_BAD;
More information about the ffmpeg-cvslog
mailing list