diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2010-03-03 17:31:24 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2010-03-03 17:31:24 +0000 |
commit | 4b83fc0fe414dc7959a5511fcdce320ad90ac7ba (patch) | |
tree | 649182f9e748b1e89ee8ca694bb0a1be09972e3c /libavformat/nutdec.c | |
parent | 1f6d0d42c53cde5e33e92c4529b774c256157f89 (diff) | |
download | ffmpeg-4b83fc0fe414dc7959a5511fcdce320ad90ac7ba.tar.gz |
Plug memory leak in NUT muxer and demuxer
Originally committed as revision 22174 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/nutdec.c')
-rw-r--r-- | libavformat/nutdec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/nutdec.c b/libavformat/nutdec.c index 171315b711..6a2d2f8cda 100644 --- a/libavformat/nutdec.c +++ b/libavformat/nutdec.c @@ -901,6 +901,7 @@ static int nut_read_close(AVFormatContext *s) av_freep(&nut->time_base); av_freep(&nut->stream); + ff_nut_free_sp(nut); for(i = 1; i < nut->header_count; i++) av_freep(&nut->header[i]); |