[FFmpeg-soc] [soc]: r1214 - jpeg2000/dwt.c

k.nowosad subversion at mplayerhq.hu
Tue Aug 28 12:04:59 CEST 2007


Author: k.nowosad
Date: Tue Aug 28 12:04:58 2007
New Revision: 1214

Log:
replaced av_free with av_freep


Modified:
   jpeg2000/dwt.c

Modified: jpeg2000/dwt.c
==============================================================================
--- jpeg2000/dwt.c	(original)
+++ jpeg2000/dwt.c	Tue Aug 28 12:04:58 2007
@@ -380,5 +380,5 @@ int ff_dwt_decode(DWTContext *s, int *t)
 
 void ff_dwt_destroy(DWTContext *s)
 {
-    av_free(s->linebuf);
+    av_freep(&s->linebuf);
 }



More information about the FFmpeg-soc mailing list