Commit 2c79288d authored by Zdenek Kabelac's avatar Zdenek Kabelac Committed by Benoit Fouet

fix mem leak

patch by Zdenek Kabelac: [zdenek kabelac gmail com]

Originally committed as revision 9740 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent c9128d56
...@@ -385,6 +385,7 @@ int ff_wma_end(AVCodecContext *avctx) ...@@ -385,6 +385,7 @@ int ff_wma_end(AVCodecContext *avctx)
free_vlc(&s->coef_vlc[i]); free_vlc(&s->coef_vlc[i]);
av_free(s->run_table[i]); av_free(s->run_table[i]);
av_free(s->level_table[i]); av_free(s->level_table[i]);
av_free(s->int_table[i]);
} }
return 0; return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment