Browse Source

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>
tags/n4.3
Michael Niedermayer 6 years ago
parent
commit
dea2591d4f
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      libavcodec/vb.c

+ 3
- 0
libavcodec/vb.c View File

@@ -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)


Loading…
Cancel
Save