summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOded Shimon <ods15@ods15.dyndns.org>2006-10-02 11:55:24 +0000
committerOded Shimon <ods15@ods15.dyndns.org>2006-10-02 11:55:24 +0000
commit4109400295516181a7fe2c0327b4765fdb1f29f7 (patch)
tree02d1f0e99c8fd29459e7d6483c600a1fe8087c4d
parent419550990ca1cca039d7bf2ec0eb936bc07c3069 (diff)
more forgotten free's.
Originally committed as revision 6527 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/vorbis_enc.c2
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);