[FFmpeg-cvslog] avcodec/cngenc: Replace av_free() by av_freep() in close function
Andreas Rheinhardt
git at videolan.org
Fri Sep 18 04:10:33 EEST 2020
ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at gmail.com> | Mon Sep 14 01:56:44 2020 +0200| [29c5c8fdfb4f7c3fe22260d73e9ade7e54330a7d] | committer: Andreas Rheinhardt
avcodec/cngenc: Replace av_free() by av_freep() in close function
This avoids leaving pointers to already freed memory in memory.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=29c5c8fdfb4f7c3fe22260d73e9ade7e54330a7d
---
libavcodec/cngenc.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavcodec/cngenc.c b/libavcodec/cngenc.c
index e185c4a40a..8f23b7555a 100644
--- a/libavcodec/cngenc.c
+++ b/libavcodec/cngenc.c
@@ -37,8 +37,8 @@ static av_cold int cng_encode_close(AVCodecContext *avctx)
{
CNGContext *p = avctx->priv_data;
ff_lpc_end(&p->lpc);
- av_free(p->samples32);
- av_free(p->ref_coef);
+ av_freep(&p->samples32);
+ av_freep(&p->ref_coef);
return 0;
}
More information about the ffmpeg-cvslog
mailing list