Commit 2ae2c605 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/vp6: Use av_freep(), avoid leaving stale pointers

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 6995be43
...@@ -651,7 +651,7 @@ static av_cold int vp6_decode_free(AVCodecContext *avctx) ...@@ -651,7 +651,7 @@ static av_cold int vp6_decode_free(AVCodecContext *avctx)
if (s->alpha_context) { if (s->alpha_context) {
ff_vp56_free_context(s->alpha_context); ff_vp56_free_context(s->alpha_context);
vp6_decode_free_context(s->alpha_context); vp6_decode_free_context(s->alpha_context);
av_free(s->alpha_context); av_freep(&s->alpha_context);
} }
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