[FFmpeg-cvslog] avcodec/wma: use av_freep(), do not leave stale pointers in memory

Michael Niedermayer git at videolan.org
Mon Jun 9 01:58:48 CEST 2014


ffmpeg | branch: release/0.10 | Michael Niedermayer <michaelni at gmx.at> | Sat Apr  5 21:34:03 2014 +0200| [6cf254ea68148497b28981fa915848d5f4bfd6b0] | committer: Michael Niedermayer

avcodec/wma: use av_freep(), do not leave stale pointers in memory

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
(cherry picked from commit d167faafe9dfa0b82bebb267c3c4e5fa5286bd67)

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

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

 libavcodec/wma.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavcodec/wma.c b/libavcodec/wma.c
index a19f776..fcb516f 100644
--- a/libavcodec/wma.c
+++ b/libavcodec/wma.c
@@ -424,9 +424,9 @@ int ff_wma_end(AVCodecContext *avctx)
     }
     for (i = 0; i < 2; i++) {
         ff_free_vlc(&s->coef_vlc[i]);
-        av_free(s->run_table[i]);
-        av_free(s->level_table[i]);
-        av_free(s->int_table[i]);
+        av_freep(&s->run_table[i]);
+        av_freep(&s->level_table[i]);
+        av_freep(&s->int_table[i]);
     }
 
     return 0;



More information about the ffmpeg-cvslog mailing list