avfilter/process_options: fix memleak

Fixes CID1026765
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2013-06-03 15:26:50 +02:00
parent 7e7d090907
commit 3ed56b3b39
1 changed files with 4 additions and 1 deletions

View File

@ -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) {