]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/xan: Check for bitstream end in xan_huffman_decode()
authorMichael Niedermayer <michael@niedermayer.cc>
Fri, 3 Nov 2017 16:48:29 +0000 (17:48 +0100)
committerMichael Niedermayer <michael@niedermayer.cc>
Sun, 5 Nov 2017 02:12:35 +0000 (03:12 +0100)
Fixes: Timeout
Fixes: 3707/clusterfuzz-testcase-6465922706440192
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
libavcodec/xan.c

index 8b4ec82405c0790c13d90b92a4eee90adf1bc1fc..1ccf164847bb70aa963534b399cebd84ac4bf720 100644 (file)
@@ -131,7 +131,10 @@ static int xan_huffman_decode(uint8_t *dest, int dest_len,
         return ret;
 
     while (val != 0x16) {
-        unsigned idx = val - 0x17 + get_bits1(&gb) * byte;
+        unsigned idx;
+        if (get_bits_left(&gb) < 1)
+            return AVERROR_INVALIDDATA;
+        idx = val - 0x17 + get_bits1(&gb) * byte;
         if (idx >= 2 * byte)
             return AVERROR_INVALIDDATA;
         val = src[idx];