Browse Source

avfilter/process_options: fix memleak

Fixes CID1026765
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.0
Michael Niedermayer 12 years ago
parent
commit
3ed56b3b39
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      libavfilter/avfilter.c

+ 4
- 1
libavfilter/avfilter.c 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) {


Loading…
Cancel
Save