Commit 21265f42 authored by Andreas Rheinhardt's avatar Andreas Rheinhardt Committed by Michael Niedermayer

fftools/ffmpeg_opt: Fix leak of options when parsing options fails

Fixes #8094.
Signed-off-by: 's avatarAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Reviewed-by: 's avatarPaul B Mahol <onemda@gmail.com>
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent f707c84b
...@@ -3278,6 +3278,7 @@ static int open_files(OptionGroupList *l, const char *inout, ...@@ -3278,6 +3278,7 @@ static int open_files(OptionGroupList *l, const char *inout,
if (ret < 0) { if (ret < 0) {
av_log(NULL, AV_LOG_ERROR, "Error parsing options for %s file " av_log(NULL, AV_LOG_ERROR, "Error parsing options for %s file "
"%s.\n", inout, g->arg); "%s.\n", inout, g->arg);
uninit_options(&o);
return ret; return ret;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment