Commit 3ed56b3b authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/process_options: fix memleak

Fixes CID1026765
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 7e7d0909
......@@ -755,8 +755,11 @@ static int process_options(AVFilterContext *ctx, AVDictionary **options,
if (av_opt_find(ctx, key, NULL, 0, 0)) {
ret = av_opt_set(ctx, key, value, 0);
if (ret < 0)
if (ret < 0) {
av_free(value);
av_free(parsed_key);
return ret;
}
} else {
av_dict_set(options, key, value, 0);
if ((ret = av_opt_set(ctx->priv, key, value, 0)) < 0) {
......
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