From 847d05360baf01c71c89cf9602fbbf5bd481c232 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sat, 16 Aug 2008 14:13:49 +0000 Subject: [PATCH] Revert r14260 Log: Free in avcodec_close() avctx->rc_eq. Fix a memory leak. Reason running free() on random pointers. Originally committed as revision 14787 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/utils.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 6e5c40a588..750ab43bea 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -994,7 +994,6 @@ int avcodec_close(AVCodecContext *avctx) avctx->codec->close(avctx); avcodec_default_free_buffers(avctx); av_freep(&avctx->priv_data); - av_freep(&avctx->rc_eq); avctx->codec = NULL; entangled_thread_counter--; return 0;