summaryrefslogtreecommitdiff
path: root/main/sorcery.c
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2014-03-06 23:47:16 +0000
committerRichard Mudgett <rmudgett@digium.com>2014-03-06 23:47:16 +0000
commit4fd50a9d8127a5fb02363f4917e9110a23e57666 (patch)
treeeef6d9fe2ed9d6657fad9a88694068cd821f6968 /main/sorcery.c
parentfbf8700c101c8e5aea7f7c5204d214cdd2478aab (diff)
sorcery.c: Fix off-nominal path ref and memory leak in ast_sorcery_objectset_json_create().
* Made exit a loop early on error in ast_sorcery_objectset_json_create(). * Removed some dead code in ast_sorcery_objectset_create2(). ........ Merged revisions 410089 from http://svn.asterisk.org/svn/asterisk/branches/12 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@410092 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/sorcery.c')
-rw-r--r--main/sorcery.c19
1 files changed, 7 insertions, 12 deletions
diff --git a/main/sorcery.c b/main/sorcery.c
index 99d051ab2..cb24cae30 100644
--- a/main/sorcery.c
+++ b/main/sorcery.c
@@ -1056,8 +1056,8 @@ struct ast_variable *ast_sorcery_objectset_create2(const struct ast_sorcery *sor
RAII_VAR(struct ast_sorcery_object_type *, object_type, ao2_find(sorcery->types, details->object->type, OBJ_KEY), ao2_cleanup);
struct ao2_iterator i;
struct ast_sorcery_object_field *object_field;
- struct ast_variable *head = NULL, *tail = NULL;
- int res = 0;
+ struct ast_variable *head = NULL;
+ struct ast_variable *tail = NULL;
if (!object_type) {
return NULL;
@@ -1065,8 +1065,8 @@ struct ast_variable *ast_sorcery_objectset_create2(const struct ast_sorcery *sor
i = ao2_iterator_init(object_type->fields, 0);
- for (; (object_field = ao2_iterator_next(&i)) && !res; ao2_ref(object_field, -1)) {
- struct ast_variable *tmp = NULL;
+ for (; (object_field = ao2_iterator_next(&i)); ao2_ref(object_field, -1)) {
+ struct ast_variable *tmp;
switch (flags) {
case AST_HANDLER_PREFER_LIST:
@@ -1096,17 +1096,10 @@ struct ast_variable *ast_sorcery_objectset_create2(const struct ast_sorcery *sor
}
tail = ast_variable_list_append_hint(&head, tail, tmp);
-
}
ao2_iterator_destroy(&i);
- /* If any error occurs we destroy all fields handled before so a partial objectset is not returned */
- if (res) {
- ast_variables_destroy(head);
- head = NULL;
- }
-
return head;
}
@@ -1125,12 +1118,13 @@ struct ast_json *ast_sorcery_objectset_json_create(const struct ast_sorcery *sor
i = ao2_iterator_init(object_type->fields, 0);
- for (; (object_field = ao2_iterator_next(&i)) && !res; ao2_ref(object_field, -1)) {
+ for (; !res && (object_field = ao2_iterator_next(&i)); ao2_ref(object_field, -1)) {
if (object_field->multiple_handler) {
struct ast_variable *tmp = NULL;
struct ast_variable *field;
if ((res = object_field->multiple_handler(object, &tmp))) {
+ ast_variables_destroy(tmp);
ao2_ref(object_field, -1);
break;
}
@@ -1140,6 +1134,7 @@ struct ast_json *ast_sorcery_objectset_json_create(const struct ast_sorcery *sor
if (!value || ast_json_object_set(json, field->name, value)) {
res = -1;
+ break;
}
}