summaryrefslogtreecommitdiff
path: root/libavformat/tee.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-09-06 02:23:38 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-10-03 20:56:12 +0200
commit4df34df642d252ec7849e07812548c417961f9ec (patch)
tree9c8ae202b3f1059109f8867d0940195862ba3bf4 /libavformat/tee.c
parente54bad3fce8678beae1754439510bc30594d7ad6 (diff)
downloadffmpeg-4df34df642d252ec7849e07812548c417961f9ec.tar.gz
avformat/tee: Fix leak of strings
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/tee.c')
-rw-r--r--libavformat/tee.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/tee.c b/libavformat/tee.c
index a96d883368..050c96d326 100644
--- a/libavformat/tee.c
+++ b/libavformat/tee.c
@@ -404,6 +404,8 @@ end:
av_free(format);
av_free(select);
av_free(on_fail);
+ av_free(use_fifo);
+ av_free(fifo_options_str);
av_dict_free(&options);
av_dict_free(&bsf_options);
av_freep(&tmp_select);