diff --git a/main/json.c b/main/json.c index 066a5df17bc709656c337fe14a721b38de3d21f0..259b41e13b8513d52b772e8b5e5f73c25cc88aa8 100644 --- a/main/json.c +++ b/main/json.c @@ -466,8 +466,13 @@ int ast_json_object_update_existing(struct ast_json *object, struct ast_json *ot while (iter != NULL && ret == 0) { const char *key = ast_json_object_iter_key(iter); + if (ast_json_object_get(object, key) != NULL) { - ret = ast_json_object_set(object, key, ast_json_object_iter_value(iter)); + struct ast_json *value = ast_json_object_iter_value(iter); + + if (!value || ast_json_object_set(object, key, ast_json_ref(value))) { + ret = -1; + } } iter = ast_json_object_iter_next(other, iter); } @@ -488,8 +493,13 @@ int ast_json_object_update_missing(struct ast_json *object, struct ast_json *oth while (iter != NULL && ret == 0) { const char *key = ast_json_object_iter_key(iter); + if (ast_json_object_get(object, key) == NULL) { - ret = ast_json_object_set(object, key, ast_json_object_iter_value(iter)); + struct ast_json *value = ast_json_object_iter_value(iter); + + if (!value || ast_json_object_set(object, key, ast_json_ref(value))) { + ret = -1; + } } iter = ast_json_object_iter_next(other, iter); }