Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-02-29 00:06:29 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2022-05-04 20:28:31 +0300
commit0c949b6ebfcee1b23a5fe33a3bc8af167956ea1e (patch)
treea626bd26bb81fb8ab78366a8b2102e41fedab9bd
parenta19796a15ee0ab82e2b70d253d328111e9f916e0 (diff)
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.c1
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;
}