mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-02 20:35:37 +02:00
avcodec/vp6: Use av_freep(), avoid leaving stale pointers
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
6995be43ae
commit
2ae2c60554
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user