[FFmpeg-cvslog] r19360 - trunk/libavcodec/indeo3.c
reimar
subversion
Mon Jul 6 18:49:36 CEST 2009
Author: reimar
Date: Mon Jul 6 18:49:36 2009
New Revision: 19360
Log:
Change av_free to av_freep
Modified:
trunk/libavcodec/indeo3.c
Modified: trunk/libavcodec/indeo3.c
==============================================================================
--- trunk/libavcodec/indeo3.c Mon Jul 6 18:48:23 2009 (r19359)
+++ trunk/libavcodec/indeo3.c Mon Jul 6 18:49:36 2009 (r19360)
@@ -143,9 +143,9 @@ static av_cold int iv_alloc_frames(Indeo
static av_cold void iv_free_func(Indeo3DecodeContext *s)
{
- av_free(s->buf);
- av_free(s->ModPred);
- av_free(s->corrector_type);
+ av_freep(&s->buf);
+ av_freep(&s->ModPred);
+ av_freep(&s->corrector_type);
}
struct ustr {
More information about the ffmpeg-cvslog
mailing list