Browse Source

lavc/bsf: fix memory leak after av_dict_parse_string fail

In case of failure, all the successfully set entries are stored in
*pm. We need to manually free the created dictionary to avoid
memory leak.

Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
tags/n4.3
Jun Zhao 6 years ago
parent
commit
0099f71502
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/bsf.c

+ 1
- 1
libavcodec/bsf.c View File

@@ -517,8 +517,8 @@ static int bsf_parse_single(const char *str, AVBSFList *bsf_lst)

ret = av_bsf_list_append2(bsf_lst, bsf_name, &bsf_options);

av_dict_free(&bsf_options);
end:
av_dict_free(&bsf_options);
av_free(buf);
return ret;
}


Loading…
Cancel
Save