Commit f3d57dc6 authored by Martin Storsjö's avatar Martin Storsjö

smacker: Free memory properly if the init function fails

Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent 0679cec6
......@@ -532,6 +532,26 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
/*
*
* Uninit smacker decoder
*
*/
static av_cold int decode_end(AVCodecContext *avctx)
{
SmackVContext * const smk = avctx->priv_data;
av_freep(&smk->mmap_tbl);
av_freep(&smk->mclr_tbl);
av_freep(&smk->full_tbl);
av_freep(&smk->type_tbl);
av_frame_unref(&smk->pic);
return 0;
}
/*
*
* Init smacker decoder
......@@ -552,34 +572,16 @@ static av_cold int decode_init(AVCodecContext *avctx)
return -1;
}
if (decode_header_trees(c))
if (decode_header_trees(c)) {
decode_end(avctx);
return -1;
}
return 0;
}
/*
*
* Uninit smacker decoder
*
*/
static av_cold int decode_end(AVCodecContext *avctx)
{
SmackVContext * const smk = avctx->priv_data;
av_freep(&smk->mmap_tbl);
av_freep(&smk->mclr_tbl);
av_freep(&smk->full_tbl);
av_freep(&smk->type_tbl);
av_frame_unref(&smk->pic);
return 0;
}
static av_cold int smka_decode_init(AVCodecContext *avctx)
{
if (avctx->channels < 1 || avctx->channels > 2) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment