[FFmpeg-cvslog] r9491 - trunk/libavcodec/ffv1.c
benoit
subversion
Thu Jul 5 22:47:58 CEST 2007
Author: benoit
Date: Thu Jul 5 22:47:58 2007
New Revision: 9491
Log:
fix mem leak
patch by Oliver Pfister: [oliver pfister gmx ch]
Modified:
trunk/libavcodec/ffv1.c
Modified: trunk/libavcodec/ffv1.c
==============================================================================
--- trunk/libavcodec/ffv1.c (original)
+++ trunk/libavcodec/ffv1.c Thu Jul 5 22:47:58 2007
@@ -702,6 +702,7 @@ static int common_end(AVCodecContext *av
PlaneContext *p= &s->plane[i];
av_freep(&p->state);
+ av_freep(&p->vlc_state);
}
return 0;
More information about the ffmpeg-cvslog
mailing list