Commit f66fed6c authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/bfi: use av_freep(), do not leave stale pointers in memory

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent e97f38ce
...@@ -171,7 +171,7 @@ static int bfi_decode_frame(AVCodecContext *avctx, void *data, ...@@ -171,7 +171,7 @@ static int bfi_decode_frame(AVCodecContext *avctx, void *data,
static av_cold int bfi_decode_close(AVCodecContext *avctx) static av_cold int bfi_decode_close(AVCodecContext *avctx)
{ {
BFIContext *bfi = avctx->priv_data; BFIContext *bfi = avctx->priv_data;
av_free(bfi->dst); av_freep(&bfi->dst);
return 0; return 0;
} }
......
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