mirror of
https://github.com/librempeg/librempeg
synced 2024-11-22 17:54:25 +00:00
avcodec/lzw: Check for end of input
Fixes: Timeout Fixes: 11873/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_TIFF_fuzzer-5093495044308992 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
70c68e654d
commit
19dc5cdaa7
@ -71,6 +71,9 @@ static int lzw_get_code(struct LZWState * s)
|
||||
{
|
||||
int c;
|
||||
|
||||
if (s->bbits < s->cursize && bytestream2_get_bytes_left(&s->gb) <= 0)
|
||||
return s->end_code;
|
||||
|
||||
if(s->mode == FF_LZW_GIF) {
|
||||
while (s->bbits < s->cursize) {
|
||||
if (!s->bs) {
|
||||
|
Loading…
Reference in New Issue
Block a user