Browse code

avcodec/gdv: Check for truncated tags in decompress_5()

Testcase: 13169/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_GDV_fuzzer-5666354038833152

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 5cf42f65b60d226d1223d2100cb1d90402189275)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

Michael Niedermayer authored on 2019/02/25 09:26:30
Showing 1 changed files
... ...
@@ -244,6 +244,8 @@ static int decompress_5(AVCodecContext *avctx, unsigned skip)
244 244
 
245 245
     while (bytestream2_get_bytes_left_p(pb) > 0 && bytestream2_get_bytes_left(gb) > 0) {
246 246
         int tag = read_bits2(&bits, gb);
247
+        if (bytestream2_get_bytes_left(gb) < 1)
248
+            return AVERROR_INVALIDDATA;
247 249
         if (tag == 0) {
248 250
             bytestream2_put_byte(pb, bytestream2_get_byte(gb));
249 251
         } else if (tag == 1) {