From 3a27fcb168af07f168e58577f6b3696a8fe74803 Mon Sep 17 00:00:00 2001 From: Andreas Rheinhardt Date: Mon, 6 Sep 2021 02:47:48 +0200 Subject: avformat/tee: Fix leak of FIFO-options dictionary Happened for all slaves which didn't use the FIFO. Signed-off-by: Andreas Rheinhardt --- libavformat/tee.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavformat') diff --git a/libavformat/tee.c b/libavformat/tee.c index 050c96d326..b358fc2f06 100644 --- a/libavformat/tee.c +++ b/libavformat/tee.c @@ -125,6 +125,7 @@ static int close_slave(TeeSlave *tee_slave) unsigned i; int ret = 0; + av_dict_free(&tee_slave->fifo_options); avf = tee_slave->avf; if (!avf) return 0; @@ -230,6 +231,7 @@ static int open_slave(AVFormatContext *avf, char *slave, TeeSlave *tee_slave) av_dict_free(&options); options = tee_slave->fifo_options; + tee_slave->fifo_options = NULL; } ret = avformat_alloc_output_context2(&avf2, NULL, tee_slave->use_fifo ? "fifo" :format, filename); -- cgit v1.2.3