Commit cbd3cd8e authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/vp3: Check init_get_bits8() for failure

Fixes CID1322316
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent f5a6a833
......@@ -2475,6 +2475,7 @@ static av_cold int theora_decode_init(AVCodecContext *avctx)
const uint8_t *header_start[3];
int header_len[3];
int i;
int ret;
avctx->pix_fmt = AV_PIX_FMT_YUV420P;
......@@ -2494,7 +2495,9 @@ static av_cold int theora_decode_init(AVCodecContext *avctx)
for (i = 0; i < 3; i++) {
if (header_len[i] <= 0)
continue;
init_get_bits8(&gb, header_start[i], header_len[i]);
ret = init_get_bits8(&gb, header_start[i], header_len[i]);
if (ret < 0)
return ret;
ptype = get_bits(&gb, 8);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment