diff options
author | softworkz <softworkz@hotmail.com> | 2025-05-20 03:06:12 +0200 |
---|---|---|
committer | softworkz <softworkz@hotmail.com> | 2025-05-28 01:02:55 +0200 |
commit | 75a5e0959f5855ae50385e948cbd9fd13f0acf85 (patch) | |
tree | 932b3e76ec5db6fea7b5c60be071fc8a4eb9f5ba | |
parent | aa38270630f570729e06239fd1b0eeff18417aa3 (diff) | |
download | ffmpeg-75a5e0959f5855ae50385e948cbd9fd13f0acf85.tar.gz |
fftools/ffmpeg: Free print_graph option variables
Signed-off-by: softworkz <softworkz@hotmail.com>
-rw-r--r-- | fftools/ffmpeg.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c index bd6f22e421..de607cac93 100644 --- a/fftools/ffmpeg.c +++ b/fftools/ffmpeg.c @@ -344,6 +344,9 @@ static void ffmpeg_cleanup(int ret) av_freep(&filter_nbthreads); + av_freep(&print_graphs_file); + av_freep(&print_graphs_format); + av_freep(&input_files); av_freep(&output_files); |