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> (cherry picked from commit 19db9636c52c040d364fe9af94ddeeb1ecfd2c2a) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
8689e9d178
commit
23e085b743
@ -242,7 +242,9 @@ static int decode_blocks(AVCodecContext *avctx, AVFrame *p,
|
|||||||
|
|
||||||
bytestream2_seek(&dgb, s->y_data_offset + row_offset, SEEK_SET);
|
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) {
|
for (int x = 0; x < avctx->width; x += 4) {
|
||||||
unsigned item = bytestream2_get_le32(gb);
|
unsigned item = bytestream2_get_le32(gb);
|
||||||
unsigned y_min = item & 4095;
|
unsigned y_min = item & 4095;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user