diff options
author | Oded Shimon <ods15@ods15.dyndns.org> | 2006-10-02 11:55:24 +0000 |
---|---|---|
committer | Oded Shimon <ods15@ods15.dyndns.org> | 2006-10-02 11:55:24 +0000 |
commit | 4109400295516181a7fe2c0327b4765fdb1f29f7 (patch) | |
tree | 02d1f0e99c8fd29459e7d6483c600a1fe8087c4d /libavcodec/vorbis_enc.c | |
parent | 419550990ca1cca039d7bf2ec0eb936bc07c3069 (diff) | |
download | ffmpeg-4109400295516181a7fe2c0327b4765fdb1f29f7.tar.gz |
more forgotten free's.
Originally committed as revision 6527 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vorbis_enc.c')
-rw-r--r-- | libavcodec/vorbis_enc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/vorbis_enc.c b/libavcodec/vorbis_enc.c index d9b13384f6..2f29d65c85 100644 --- a/libavcodec/vorbis_enc.c +++ b/libavcodec/vorbis_enc.c @@ -1052,6 +1052,8 @@ static int vorbis_encode_close(AVCodecContext * avccontext) av_freep(&venc->mappings[i].mux); av_freep(&venc->mappings[i].floor); av_freep(&venc->mappings[i].residue); + av_freep(&venc->mappings[i].magnitude); + av_freep(&venc->mappings[i].angle); } av_freep(&venc->mappings); |