Browse Source

avcodec/flicvideo: Check frame_size before decrementing

Fixes: runtime error: signed integer overflow: -2147483627 - 22 cannot be represented in type 'int'
Fixes: 1637/clusterfuzz-testcase-minimized-5376582493405184

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 355e27e24d)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.1.8
Michael Niedermayer 8 years ago
parent
commit
792f15c109
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      libavcodec/flicvideo.c

+ 5
- 0
libavcodec/flicvideo.c View File

@@ -202,6 +202,9 @@ static int flic_decode_frame_8BPP(AVCodecContext *avctx,
num_chunks = bytestream2_get_le16(&g2);
bytestream2_skip(&g2, 8); /* skip padding */

if (frame_size < 16)
return AVERROR_INVALIDDATA;

frame_size -= 16;

/* iterate through the chunks */
@@ -522,6 +525,8 @@ static int flic_decode_frame_15_16BPP(AVCodecContext *avctx,
if (frame_size > buf_size)
frame_size = buf_size;

if (frame_size < 16)
return AVERROR_INVALIDDATA;
frame_size -= 16;

/* iterate through the chunks */


Loading…
Cancel
Save