mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/vmnc: use av_freep()
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
31d0d35560
commit
19fda0a1bc
@ -517,9 +517,9 @@ static av_cold int decode_end(AVCodecContext *avctx)
|
||||
|
||||
av_frame_free(&c->frame);
|
||||
|
||||
av_free(c->curbits);
|
||||
av_free(c->curmask);
|
||||
av_free(c->screendta);
|
||||
av_freep(&c->curbits);
|
||||
av_freep(&c->curmask);
|
||||
av_freep(&c->screendta);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user