1
0
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:
Paul B Mahol 2013-10-09 12:21:14 +00:00
parent 31d0d35560
commit 19fda0a1bc

View File

@ -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;
}