summaryrefslogtreecommitdiff
path: root/libavutil
diff options
context:
space:
mode:
authorJun Zhao <barryjzhao@tencent.com>2020-01-01 12:35:31 +0800
committerJun Zhao <barryjzhao@tencent.com>2020-01-04 09:05:23 +0800
commit3c8da7b9826d03e370cab550a403ed0e14da24ef (patch)
tree2708e7217d2042ef12d2bbb96ed1b7a0d6a05dbd /libavutil
parentc8e72a6494ebffbe930a30823cb70a0671e6bfe0 (diff)
libavutil/opt: 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>
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/opt.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/libavutil/opt.c b/libavutil/opt.c
index 60161d4a80..a482febf5f 100644
--- a/libavutil/opt.c
+++ b/libavutil/opt.c
@@ -452,8 +452,10 @@ static int set_string_dict(void *obj, const AVOption *o, const char *val, uint8_
if (val) {
int ret = av_dict_parse_string(&options, val, "=", ":", 0);
- if (ret < 0)
+ if (ret < 0) {
+ av_dict_free(&options);
return ret;
+ }
}
av_dict_free((AVDictionary **)dst);
@@ -2006,8 +2008,10 @@ int av_opt_is_set_to_default(void *obj, const AVOption *o)
AVDictionaryEntry *en1 = NULL;
AVDictionaryEntry *en2 = NULL;
ret = av_dict_parse_string(&dict1, o->default_val.str, "=", ":", 0);
- if (ret < 0)
+ if (ret < 0) {
+ av_dict_free(&dict1);
return ret;
+ }
do {
en1 = av_dict_get(dict1, "", en1, AV_DICT_IGNORE_SUFFIX);
en2 = av_dict_get(dict2, "", en2, AV_DICT_IGNORE_SUFFIX);