1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-28 20:53:54 +02:00

avformat/tee: Fix leak of strings

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
(cherry picked from commit 4df34df642)
This commit is contained in:
Andreas Rheinhardt 2021-09-06 02:23:38 +02:00
parent 0229916f15
commit e7201aa246

View File

@ -403,6 +403,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);