Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-01-24 05:42:46 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2016-01-28 17:53:54 +0300
commit6fec0dbd2e155b93b3a59dd03df1b4daeaa73f3b (patch)
treec43f06abc482de3d40f3adb55eb89f1d4dcd4d61
parent0dc379cfa66db7684339ef9e6c0bd8aaba64c06a (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> (cherry picked from commit f3ace85d8869c3dddd2d28d064002d0d912e3624) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libavutil/opt.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/libavutil/opt.c b/libavutil/opt.c
index 580586ea01..2610638e82 100644
--- a/libavutil/opt.c
+++ b/libavutil/opt.c
@@ -1461,10 +1461,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;
}