mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/notchlc: Check init_get_bits8() for failure
Fixes: CID1500300 Unchecked return value Sponsored-by: Sovereign Tech Fund Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
161d0aa2a8
commit
19db9636c5
@ -243,7 +243,9 @@ static int decode_blocks(AVCodecContext *avctx, AVFrame *p,
|
||||
|
||||
bytestream2_seek(&dgb, s->y_data_offset + row_offset, SEEK_SET);
|
||||
|
||||
init_get_bits8(&bit, dgb.buffer, bytestream2_get_bytes_left(&dgb));
|
||||
ret = init_get_bits8(&bit, dgb.buffer, bytestream2_get_bytes_left(&dgb));
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
for (int x = 0; x < avctx->width; x += 4) {
|
||||
unsigned item = bytestream2_get_le32(gb);
|
||||
unsigned y_min = item & 4095;
|
||||
|
Loading…
Reference in New Issue
Block a user