From: Robert Swain Date: Fri, 15 Aug 2008 10:31:11 +0000 (+0000) Subject: Don't try to free shared ff_sine_* tables pointed to by s->windows[] X-Git-Tag: v0.5~3122 X-Git-Url: http://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff_plain/cce540c5e736e5873aef3a906b7231ce7b28df14 Don't try to free shared ff_sine_* tables pointed to by s->windows[] Originally committed as revision 14775 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavcodec/wma.c b/libavcodec/wma.c index 423852b..6c7e14b 100644 --- a/libavcodec/wma.c +++ b/libavcodec/wma.c @@ -366,8 +366,6 @@ int ff_wma_end(AVCodecContext *avctx) for(i = 0; i < s->nb_block_sizes; i++) ff_mdct_end(&s->mdct_ctx[i]); - for(i = 0; i < s->nb_block_sizes; i++) - av_free(s->windows[i]); if (s->use_exp_vlc) { free_vlc(&s->exp_vlc);