diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-02-28 22:06:29 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2022-05-04 19:28:31 +0200 |
commit | 0c949b6ebfcee1b23a5fe33a3bc8af167956ea1e (patch) | |
tree | a626bd26bb81fb8ab78366a8b2102e41fedab9bd | |
parent | a19796a15ee0ab82e2b70d253d328111e9f916e0 (diff) | |
download | ffmpeg-0c949b6ebfcee1b23a5fe33a3bc8af167956ea1e.tar.gz |
fftools/ffmpeg_opt: Fix leak of options when parsing options fails
Fixes #8094.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 21265f42ecb265debe9fec1dbfd0cb7de5a8aefb)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | ffmpeg_opt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ffmpeg_opt.c b/ffmpeg_opt.c index 75af4ce8d9..45ed3d01a8 100644 --- a/ffmpeg_opt.c +++ b/ffmpeg_opt.c @@ -2903,6 +2903,7 @@ static int open_files(OptionGroupList *l, const char *inout, if (ret < 0) { av_log(NULL, AV_LOG_ERROR, "Error parsing options for %s file " "%s.\n", inout, g->arg); + uninit_options(&o); return ret; } |