summaryrefslogtreecommitdiff
path: root/libavutil/opt.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-01-24 03:42:46 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2016-01-26 17:36:08 +0100
commitf3ace85d8869c3dddd2d28d064002d0d912e3624 (patch)
tree4e5cf945e9692388b314a3f8d4953d8d492afc79 /libavutil/opt.c
parent2e31434d84bba17610ecc491afb5b372678fd517 (diff)
avutil/opt: check for and handle errors in av_opt_set_dict2()
Previously errors could result in random entries to be lost. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavutil/opt.c')
-rw-r--r--libavutil/opt.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/libavutil/opt.c b/libavutil/opt.c
index 4fd25ff86f..eae4f75dcd 100644
--- a/libavutil/opt.c
+++ b/libavutil/opt.c
@@ -1476,10 +1476,11 @@ int av_opt_set_dict2(void *obj, AVDictionary **options, int search_flags)
while ((t = av_dict_get(*options, "", t, AV_DICT_IGNORE_SUFFIX))) {
ret = av_opt_set(obj, t->key, t->value, search_flags);
if (ret == AVERROR_OPTION_NOT_FOUND)
- av_dict_set(&tmp, t->key, t->value, 0);
- else if (ret < 0) {
+ ret = av_dict_set(&tmp, t->key, t->value, 0);
+ if (ret < 0) {
av_log(obj, AV_LOG_ERROR, "Error setting option %s to value %s.\n", t->key, t->value);
- break;
+ av_dict_free(&tmp);
+ return ret;
}
ret = 0;
}