diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-08-07 17:20:39 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-08-07 17:20:39 +0200 |
commit | f3b7f470701224086d06012f1d9a31864abe9300 (patch) | |
tree | bb04d79bfee80c1d3da40f20c11d917b62cdd966 /libavformat/oggparsevorbis.c | |
parent | d0a882ab1d2a4197da1edd77450af30e2da3460e (diff) | |
download | ffmpeg-f3b7f470701224086d06012f1d9a31864abe9300.tar.gz |
avformat/oggparsevorbis: fix leak of tt
Fixes CID1061059
Fixes fate
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/oggparsevorbis.c')
-rw-r--r-- | libavformat/oggparsevorbis.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/oggparsevorbis.c b/libavformat/oggparsevorbis.c index effc7a54ed..d071a35fb6 100644 --- a/libavformat/oggparsevorbis.c +++ b/libavformat/oggparsevorbis.c @@ -136,12 +136,14 @@ ff_vorbis_comment(AVFormatContext * as, AVDictionary **m, const uint8_t *buf, in if (!pict) { av_log(as, AV_LOG_WARNING, "out-of-memory error. Skipping cover art block.\n"); + av_freep(&tt); av_freep(&ct); continue; } if ((ret = av_base64_decode(pict, ct, vl)) > 0) ret = ff_flac_parse_picture(as, pict, ret); av_freep(&pict); + av_freep(&tt); av_freep(&ct); if (ret < 0) { av_log(as, AV_LOG_WARNING, "Failed to parse cover art block.\n"); |