[FFmpeg-cvslog] Fix memory leak in ALS decoder in big endian systems

Vitor Sessak git
Sun Jan 30 04:15:56 CET 2011


ffmpeg | branch: master | Vitor Sessak <vitor1001 at gmail.com> | Sat Jan 29 15:39:09 2011 +0100| [5255acc6beb61ef30f43bc2c746b0b487815f76d] | committer: Michael Niedermayer

Fix memory leak in ALS decoder in big endian systems

Signed-off-by: Mans Rullgard <mans at mansr.com>
(cherry picked from commit e0eb963aaa55ddcc54bf80f3261f6a436edca4a3)

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5255acc6beb61ef30f43bc2c746b0b487815f76d
---

 libavcodec/alsdec.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/libavcodec/alsdec.c b/libavcodec/alsdec.c
index 3e415c0..e5b734c 100644
--- a/libavcodec/alsdec.c
+++ b/libavcodec/alsdec.c
@@ -1564,6 +1564,7 @@ static av_cold int decode_end(AVCodecContext *avctx)
     av_freep(&ctx->chan_data);
     av_freep(&ctx->chan_data_buffer);
     av_freep(&ctx->reverted_channels);
+    av_freep(&ctx->crc_buffer);
 
     return 0;
 }




More information about the ffmpeg-cvslog mailing list