From 7d204e67e8f991bfdfb6a6e91b6855b6c5a782c0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Reimar=20D=C3=B6ffinger?= Date: Sun, 28 Dec 2008 23:25:17 +0000 Subject: [PATCH] av_free() -> av_freep(), patch by Reimar Doffinger, see discussion in "rmdec.c: double free" thread on mailinglist. Originally committed as revision 16379 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/rmdec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/rmdec.c b/libavformat/rmdec.c index 01e335b..2471f94 100644 --- a/libavformat/rmdec.c +++ b/libavformat/rmdec.c @@ -81,8 +81,8 @@ RMStream *ff_rm_alloc_rmstream (void) void ff_rm_free_rmstream (RMStream *rms) { - av_free(rms->videobuf); - av_free(rms->audiobuf); + av_freep(&rms->videobuf); + av_freep(&rms->audiobuf); } static int rm_read_audio_stream_info(AVFormatContext *s, ByteIOContext *pb, -- 2.7.4