From: Reimar Döffinger Date: Tue, 13 Oct 2009 18:28:37 +0000 (+0000) Subject: Add missing release_buffer on close X-Git-Tag: v0.6~2961 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=4b5fee0205a825e5f0c7b414af6776803e55a78e;p=coroid%2Flibav_saccubus.git Add missing release_buffer on close Originally committed as revision 20227 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavcodec/4xm.c b/libavcodec/4xm.c index cc0bcd4f8..d2172ba25 100644 --- a/libavcodec/4xm.c +++ b/libavcodec/4xm.c @@ -832,6 +832,10 @@ static av_cold int decode_end(AVCodecContext *avctx){ f->cfrm[i].allocated_size= 0; } free_vlc(&f->pre_vlc); + if(f->current_picture.data[0]) + avctx->release_buffer(avctx, &f->current_picture); + if(f->last_picture.data[0]) + avctx->release_buffer(avctx, &f->last_picture); return 0; }