diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2019-08-12 00:21:49 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2019-08-29 15:18:42 +0200 |
commit | dea2591d4fbc989ca82bc8a8ad7d16aacdc89af1 (patch) | |
tree | 37dec878450c7254e1c59b4c1b614e6f3c69b192 /libavcodec/vb.c | |
parent | 37bc8e3249c88b733bcc0d8c74cdf668292e4d63 (diff) | |
download | ffmpeg-dea2591d4fbc989ca82bc8a8ad7d16aacdc89af1.tar.gz |
avcodec/vb: Check input packet size to be large enough to contain flags
Fixes: Timeout (->9sec)
Fixes: 16292/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_VB_fuzzer-5747063496638464
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/vb.c')
-rw-r--r-- | libavcodec/vb.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/vb.c b/libavcodec/vb.c index c6dd6fb456..d9c6b93a73 100644 --- a/libavcodec/vb.c +++ b/libavcodec/vb.c @@ -199,6 +199,9 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, uint32_t size; int offset = 0; + if (avpkt->size < 2) + return AVERROR_INVALIDDATA; + bytestream2_init(&c->stream, avpkt->data, avpkt->size); if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) |