mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
avcodec/svq1dec: Check init_get_bits8() for failure
Fixes: CID1322313
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit a51d4246d8
)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
1e7ff902f2
commit
50e4d38ce4
@ -618,9 +618,12 @@ static int svq1_decode_frame(AVCodecContext *avctx, void *data,
|
||||
uint8_t *current;
|
||||
int result, i, x, y, width, height;
|
||||
svq1_pmv *pmv;
|
||||
int ret;
|
||||
|
||||
/* initialize bit buffer */
|
||||
init_get_bits8(&s->gb, buf, buf_size);
|
||||
ret = init_get_bits8(&s->gb, buf, buf_size);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
/* decode frame header */
|
||||
s->frame_code = get_bits(&s->gb, 22);
|
||||
|
Loading…
Reference in New Issue
Block a user