diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-01-09 01:12:48 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-01-09 01:12:48 +0100 |
commit | 72c5828c93a229513826b53cc9322815ec6813d8 (patch) | |
tree | 5470245204d14cacea46c7fb68c0fc3b31775385 | |
parent | 9273efac1b9ef79ca0ea5673d8088c501e19d70f (diff) | |
download | ffmpeg-72c5828c93a229513826b53cc9322815ec6813d8.tar.gz |
lavf: Add forgotten line from 212fd3a1f1121a9db20c478f1fccf15e8bb53c94
This fixes a tiny memleak.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/utils.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c index acc69f1561..e4b28d226c 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -2713,6 +2713,8 @@ int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options) ic->streams[i]->codec->thread_count = 0; av_freep(&ic->streams[i]->info); } + + av_dict_free(&one_thread_opt); return ret; } |