mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/flashsv: check return value of flashsv_decode_init()
This commit is contained in:
parent
ae227fa1f2
commit
15a5f49c0b
@ -551,7 +551,11 @@ static const uint32_t ff_flashsv2_default_palette[128] = {
|
||||
static av_cold int flashsv2_decode_init(AVCodecContext *avctx)
|
||||
{
|
||||
FlashSVContext *s = avctx->priv_data;
|
||||
flashsv_decode_init(avctx);
|
||||
int ret;
|
||||
|
||||
ret = flashsv_decode_init(avctx);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
s->pal = ff_flashsv2_default_palette;
|
||||
s->ver = 2;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user