mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-19 09:02:26 +02:00
avcodec/leaddec: Check init_get_bits8() for failure
Fixes: CID1604416 Unchecked return value Sponsored-by: Sovereign Tech Fund Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
6e4c037833
commit
0e3e7e8aeb
@ -194,7 +194,9 @@ static int lead_decode_frame(AVCodecContext *avctx, AVFrame * frame,
|
|||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
|
|
||||||
init_get_bits8(&gb, s->bitstream_buf, size);
|
ret = init_get_bits8(&gb, s->bitstream_buf, size);
|
||||||
|
if (ret < 0)
|
||||||
|
return ret;
|
||||||
|
|
||||||
if (avctx->pix_fmt == AV_PIX_FMT_YUV420P && zero) {
|
if (avctx->pix_fmt == AV_PIX_FMT_YUV420P && zero) {
|
||||||
for (int mb_y = 0; mb_y < avctx->height / 8; mb_y++)
|
for (int mb_y = 0; mb_y < avctx->height / 8; mb_y++)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user