mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 14:20:09 +00:00
[SBI] Crash occurs when ENUM in the MAP (#2103)
This commit is contained in:
parent
ce668c556c
commit
969c116e77
1097 changed files with 266728 additions and 42047 deletions
|
|
@ -28,34 +28,54 @@ OpenAPI_data_change_notify_t *OpenAPI_data_change_notify_create(
|
|||
|
||||
void OpenAPI_data_change_notify_free(OpenAPI_data_change_notify_t *data_change_notify)
|
||||
{
|
||||
OpenAPI_lnode_t *node = NULL;
|
||||
|
||||
if (NULL == data_change_notify) {
|
||||
return;
|
||||
}
|
||||
OpenAPI_lnode_t *node;
|
||||
OpenAPI_list_for_each(data_change_notify->original_callback_reference, node) {
|
||||
ogs_free(node->data);
|
||||
if (data_change_notify->original_callback_reference) {
|
||||
OpenAPI_list_for_each(data_change_notify->original_callback_reference, node) {
|
||||
ogs_free(node->data);
|
||||
}
|
||||
OpenAPI_list_free(data_change_notify->original_callback_reference);
|
||||
data_change_notify->original_callback_reference = NULL;
|
||||
}
|
||||
OpenAPI_list_free(data_change_notify->original_callback_reference);
|
||||
ogs_free(data_change_notify->ue_id);
|
||||
OpenAPI_list_for_each(data_change_notify->notify_items, node) {
|
||||
OpenAPI_notify_item_free(node->data);
|
||||
if (data_change_notify->ue_id) {
|
||||
ogs_free(data_change_notify->ue_id);
|
||||
data_change_notify->ue_id = NULL;
|
||||
}
|
||||
OpenAPI_list_free(data_change_notify->notify_items);
|
||||
OpenAPI_sdm_subscription_1_free(data_change_notify->sdm_subscription);
|
||||
OpenAPI_list_for_each(data_change_notify->additional_sdm_subscriptions, node) {
|
||||
OpenAPI_sdm_subscription_1_free(node->data);
|
||||
if (data_change_notify->notify_items) {
|
||||
OpenAPI_list_for_each(data_change_notify->notify_items, node) {
|
||||
OpenAPI_notify_item_free(node->data);
|
||||
}
|
||||
OpenAPI_list_free(data_change_notify->notify_items);
|
||||
data_change_notify->notify_items = NULL;
|
||||
}
|
||||
OpenAPI_list_free(data_change_notify->additional_sdm_subscriptions);
|
||||
OpenAPI_list_for_each(data_change_notify->subscription_data_subscriptions, node) {
|
||||
OpenAPI_subscription_data_subscriptions_free(node->data);
|
||||
if (data_change_notify->sdm_subscription) {
|
||||
OpenAPI_sdm_subscription_1_free(data_change_notify->sdm_subscription);
|
||||
data_change_notify->sdm_subscription = NULL;
|
||||
}
|
||||
if (data_change_notify->additional_sdm_subscriptions) {
|
||||
OpenAPI_list_for_each(data_change_notify->additional_sdm_subscriptions, node) {
|
||||
OpenAPI_sdm_subscription_1_free(node->data);
|
||||
}
|
||||
OpenAPI_list_free(data_change_notify->additional_sdm_subscriptions);
|
||||
data_change_notify->additional_sdm_subscriptions = NULL;
|
||||
}
|
||||
if (data_change_notify->subscription_data_subscriptions) {
|
||||
OpenAPI_list_for_each(data_change_notify->subscription_data_subscriptions, node) {
|
||||
OpenAPI_subscription_data_subscriptions_free(node->data);
|
||||
}
|
||||
OpenAPI_list_free(data_change_notify->subscription_data_subscriptions);
|
||||
data_change_notify->subscription_data_subscriptions = NULL;
|
||||
}
|
||||
OpenAPI_list_free(data_change_notify->subscription_data_subscriptions);
|
||||
ogs_free(data_change_notify);
|
||||
}
|
||||
|
||||
cJSON *OpenAPI_data_change_notify_convertToJSON(OpenAPI_data_change_notify_t *data_change_notify)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
OpenAPI_lnode_t *node = NULL;
|
||||
|
||||
if (data_change_notify == NULL) {
|
||||
ogs_error("OpenAPI_data_change_notify_convertToJSON() failed [DataChangeNotify]");
|
||||
|
|
@ -64,19 +84,17 @@ cJSON *OpenAPI_data_change_notify_convertToJSON(OpenAPI_data_change_notify_t *da
|
|||
|
||||
item = cJSON_CreateObject();
|
||||
if (data_change_notify->original_callback_reference) {
|
||||
cJSON *original_callback_reference = cJSON_AddArrayToObject(item, "originalCallbackReference");
|
||||
if (original_callback_reference == NULL) {
|
||||
cJSON *original_callback_referenceList = cJSON_AddArrayToObject(item, "originalCallbackReference");
|
||||
if (original_callback_referenceList == NULL) {
|
||||
ogs_error("OpenAPI_data_change_notify_convertToJSON() failed [original_callback_reference]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
OpenAPI_lnode_t *original_callback_reference_node;
|
||||
OpenAPI_list_for_each(data_change_notify->original_callback_reference, original_callback_reference_node) {
|
||||
if (cJSON_AddStringToObject(original_callback_reference, "", (char*)original_callback_reference_node->data) == NULL) {
|
||||
ogs_error("OpenAPI_data_change_notify_convertToJSON() failed [original_callback_reference]");
|
||||
goto end;
|
||||
OpenAPI_list_for_each(data_change_notify->original_callback_reference, node) {
|
||||
if (cJSON_AddStringToObject(original_callback_referenceList, "", (char*)node->data) == NULL) {
|
||||
ogs_error("OpenAPI_data_change_notify_convertToJSON() failed [original_callback_reference]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (data_change_notify->ue_id) {
|
||||
|
|
@ -92,17 +110,13 @@ cJSON *OpenAPI_data_change_notify_convertToJSON(OpenAPI_data_change_notify_t *da
|
|||
ogs_error("OpenAPI_data_change_notify_convertToJSON() failed [notify_items]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
OpenAPI_lnode_t *notify_items_node;
|
||||
if (data_change_notify->notify_items) {
|
||||
OpenAPI_list_for_each(data_change_notify->notify_items, notify_items_node) {
|
||||
cJSON *itemLocal = OpenAPI_notify_item_convertToJSON(notify_items_node->data);
|
||||
if (itemLocal == NULL) {
|
||||
ogs_error("OpenAPI_data_change_notify_convertToJSON() failed [notify_items]");
|
||||
goto end;
|
||||
}
|
||||
cJSON_AddItemToArray(notify_itemsList, itemLocal);
|
||||
OpenAPI_list_for_each(data_change_notify->notify_items, node) {
|
||||
cJSON *itemLocal = OpenAPI_notify_item_convertToJSON(node->data);
|
||||
if (itemLocal == NULL) {
|
||||
ogs_error("OpenAPI_data_change_notify_convertToJSON() failed [notify_items]");
|
||||
goto end;
|
||||
}
|
||||
cJSON_AddItemToArray(notify_itemsList, itemLocal);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -125,17 +139,13 @@ cJSON *OpenAPI_data_change_notify_convertToJSON(OpenAPI_data_change_notify_t *da
|
|||
ogs_error("OpenAPI_data_change_notify_convertToJSON() failed [additional_sdm_subscriptions]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
OpenAPI_lnode_t *additional_sdm_subscriptions_node;
|
||||
if (data_change_notify->additional_sdm_subscriptions) {
|
||||
OpenAPI_list_for_each(data_change_notify->additional_sdm_subscriptions, additional_sdm_subscriptions_node) {
|
||||
cJSON *itemLocal = OpenAPI_sdm_subscription_1_convertToJSON(additional_sdm_subscriptions_node->data);
|
||||
if (itemLocal == NULL) {
|
||||
ogs_error("OpenAPI_data_change_notify_convertToJSON() failed [additional_sdm_subscriptions]");
|
||||
goto end;
|
||||
}
|
||||
cJSON_AddItemToArray(additional_sdm_subscriptionsList, itemLocal);
|
||||
OpenAPI_list_for_each(data_change_notify->additional_sdm_subscriptions, node) {
|
||||
cJSON *itemLocal = OpenAPI_sdm_subscription_1_convertToJSON(node->data);
|
||||
if (itemLocal == NULL) {
|
||||
ogs_error("OpenAPI_data_change_notify_convertToJSON() failed [additional_sdm_subscriptions]");
|
||||
goto end;
|
||||
}
|
||||
cJSON_AddItemToArray(additional_sdm_subscriptionsList, itemLocal);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -145,17 +155,13 @@ cJSON *OpenAPI_data_change_notify_convertToJSON(OpenAPI_data_change_notify_t *da
|
|||
ogs_error("OpenAPI_data_change_notify_convertToJSON() failed [subscription_data_subscriptions]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
OpenAPI_lnode_t *subscription_data_subscriptions_node;
|
||||
if (data_change_notify->subscription_data_subscriptions) {
|
||||
OpenAPI_list_for_each(data_change_notify->subscription_data_subscriptions, subscription_data_subscriptions_node) {
|
||||
cJSON *itemLocal = OpenAPI_subscription_data_subscriptions_convertToJSON(subscription_data_subscriptions_node->data);
|
||||
if (itemLocal == NULL) {
|
||||
ogs_error("OpenAPI_data_change_notify_convertToJSON() failed [subscription_data_subscriptions]");
|
||||
goto end;
|
||||
}
|
||||
cJSON_AddItemToArray(subscription_data_subscriptionsList, itemLocal);
|
||||
OpenAPI_list_for_each(data_change_notify->subscription_data_subscriptions, node) {
|
||||
cJSON *itemLocal = OpenAPI_subscription_data_subscriptions_convertToJSON(node->data);
|
||||
if (itemLocal == NULL) {
|
||||
ogs_error("OpenAPI_data_change_notify_convertToJSON() failed [subscription_data_subscriptions]");
|
||||
goto end;
|
||||
}
|
||||
cJSON_AddItemToArray(subscription_data_subscriptionsList, itemLocal);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -166,132 +172,130 @@ end:
|
|||
OpenAPI_data_change_notify_t *OpenAPI_data_change_notify_parseFromJSON(cJSON *data_change_notifyJSON)
|
||||
{
|
||||
OpenAPI_data_change_notify_t *data_change_notify_local_var = NULL;
|
||||
cJSON *original_callback_reference = cJSON_GetObjectItemCaseSensitive(data_change_notifyJSON, "originalCallbackReference");
|
||||
|
||||
OpenAPI_list_t *original_callback_referenceList;
|
||||
OpenAPI_lnode_t *node = NULL;
|
||||
cJSON *original_callback_reference = NULL;
|
||||
OpenAPI_list_t *original_callback_referenceList = NULL;
|
||||
cJSON *ue_id = NULL;
|
||||
cJSON *notify_items = NULL;
|
||||
OpenAPI_list_t *notify_itemsList = NULL;
|
||||
cJSON *sdm_subscription = NULL;
|
||||
OpenAPI_sdm_subscription_1_t *sdm_subscription_local_nonprim = NULL;
|
||||
cJSON *additional_sdm_subscriptions = NULL;
|
||||
OpenAPI_list_t *additional_sdm_subscriptionsList = NULL;
|
||||
cJSON *subscription_data_subscriptions = NULL;
|
||||
OpenAPI_list_t *subscription_data_subscriptionsList = NULL;
|
||||
original_callback_reference = cJSON_GetObjectItemCaseSensitive(data_change_notifyJSON, "originalCallbackReference");
|
||||
if (original_callback_reference) {
|
||||
cJSON *original_callback_reference_local;
|
||||
if (!cJSON_IsArray(original_callback_reference)) {
|
||||
ogs_error("OpenAPI_data_change_notify_parseFromJSON() failed [original_callback_reference]");
|
||||
goto end;
|
||||
}
|
||||
original_callback_referenceList = OpenAPI_list_create();
|
||||
cJSON *original_callback_reference_local = NULL;
|
||||
if (!cJSON_IsArray(original_callback_reference)) {
|
||||
ogs_error("OpenAPI_data_change_notify_parseFromJSON() failed [original_callback_reference]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
cJSON_ArrayForEach(original_callback_reference_local, original_callback_reference) {
|
||||
if (!cJSON_IsString(original_callback_reference_local)) {
|
||||
ogs_error("OpenAPI_data_change_notify_parseFromJSON() failed [original_callback_reference]");
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_list_add(original_callback_referenceList, ogs_strdup(original_callback_reference_local->valuestring));
|
||||
}
|
||||
original_callback_referenceList = OpenAPI_list_create();
|
||||
|
||||
cJSON_ArrayForEach(original_callback_reference_local, original_callback_reference) {
|
||||
double *localDouble = NULL;
|
||||
int *localInt = NULL;
|
||||
if (!cJSON_IsString(original_callback_reference_local)) {
|
||||
ogs_error("OpenAPI_data_change_notify_parseFromJSON() failed [original_callback_reference]");
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_list_add(original_callback_referenceList, ogs_strdup(original_callback_reference_local->valuestring));
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *ue_id = cJSON_GetObjectItemCaseSensitive(data_change_notifyJSON, "ueId");
|
||||
|
||||
ue_id = cJSON_GetObjectItemCaseSensitive(data_change_notifyJSON, "ueId");
|
||||
if (ue_id) {
|
||||
if (!cJSON_IsString(ue_id)) {
|
||||
if (!cJSON_IsString(ue_id) && !cJSON_IsNull(ue_id)) {
|
||||
ogs_error("OpenAPI_data_change_notify_parseFromJSON() failed [ue_id]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *notify_items = cJSON_GetObjectItemCaseSensitive(data_change_notifyJSON, "notifyItems");
|
||||
|
||||
OpenAPI_list_t *notify_itemsList;
|
||||
notify_items = cJSON_GetObjectItemCaseSensitive(data_change_notifyJSON, "notifyItems");
|
||||
if (notify_items) {
|
||||
cJSON *notify_items_local_nonprimitive;
|
||||
if (!cJSON_IsArray(notify_items)){
|
||||
ogs_error("OpenAPI_data_change_notify_parseFromJSON() failed [notify_items]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
notify_itemsList = OpenAPI_list_create();
|
||||
|
||||
cJSON_ArrayForEach(notify_items_local_nonprimitive, notify_items ) {
|
||||
if (!cJSON_IsObject(notify_items_local_nonprimitive)) {
|
||||
cJSON *notify_items_local = NULL;
|
||||
if (!cJSON_IsArray(notify_items)) {
|
||||
ogs_error("OpenAPI_data_change_notify_parseFromJSON() failed [notify_items]");
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_notify_item_t *notify_itemsItem = OpenAPI_notify_item_parseFromJSON(notify_items_local_nonprimitive);
|
||||
|
||||
if (!notify_itemsItem) {
|
||||
ogs_error("No notify_itemsItem");
|
||||
OpenAPI_list_free(notify_itemsList);
|
||||
goto end;
|
||||
notify_itemsList = OpenAPI_list_create();
|
||||
|
||||
cJSON_ArrayForEach(notify_items_local, notify_items) {
|
||||
if (!cJSON_IsObject(notify_items_local)) {
|
||||
ogs_error("OpenAPI_data_change_notify_parseFromJSON() failed [notify_items]");
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_notify_item_t *notify_itemsItem = OpenAPI_notify_item_parseFromJSON(notify_items_local);
|
||||
if (!notify_itemsItem) {
|
||||
ogs_error("No notify_itemsItem");
|
||||
OpenAPI_list_free(notify_itemsList);
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_list_add(notify_itemsList, notify_itemsItem);
|
||||
}
|
||||
|
||||
OpenAPI_list_add(notify_itemsList, notify_itemsItem);
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *sdm_subscription = cJSON_GetObjectItemCaseSensitive(data_change_notifyJSON, "sdmSubscription");
|
||||
|
||||
OpenAPI_sdm_subscription_1_t *sdm_subscription_local_nonprim = NULL;
|
||||
sdm_subscription = cJSON_GetObjectItemCaseSensitive(data_change_notifyJSON, "sdmSubscription");
|
||||
if (sdm_subscription) {
|
||||
sdm_subscription_local_nonprim = OpenAPI_sdm_subscription_1_parseFromJSON(sdm_subscription);
|
||||
}
|
||||
|
||||
cJSON *additional_sdm_subscriptions = cJSON_GetObjectItemCaseSensitive(data_change_notifyJSON, "additionalSdmSubscriptions");
|
||||
|
||||
OpenAPI_list_t *additional_sdm_subscriptionsList;
|
||||
additional_sdm_subscriptions = cJSON_GetObjectItemCaseSensitive(data_change_notifyJSON, "additionalSdmSubscriptions");
|
||||
if (additional_sdm_subscriptions) {
|
||||
cJSON *additional_sdm_subscriptions_local_nonprimitive;
|
||||
if (!cJSON_IsArray(additional_sdm_subscriptions)){
|
||||
ogs_error("OpenAPI_data_change_notify_parseFromJSON() failed [additional_sdm_subscriptions]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
additional_sdm_subscriptionsList = OpenAPI_list_create();
|
||||
|
||||
cJSON_ArrayForEach(additional_sdm_subscriptions_local_nonprimitive, additional_sdm_subscriptions ) {
|
||||
if (!cJSON_IsObject(additional_sdm_subscriptions_local_nonprimitive)) {
|
||||
cJSON *additional_sdm_subscriptions_local = NULL;
|
||||
if (!cJSON_IsArray(additional_sdm_subscriptions)) {
|
||||
ogs_error("OpenAPI_data_change_notify_parseFromJSON() failed [additional_sdm_subscriptions]");
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_sdm_subscription_1_t *additional_sdm_subscriptionsItem = OpenAPI_sdm_subscription_1_parseFromJSON(additional_sdm_subscriptions_local_nonprimitive);
|
||||
|
||||
if (!additional_sdm_subscriptionsItem) {
|
||||
ogs_error("No additional_sdm_subscriptionsItem");
|
||||
OpenAPI_list_free(additional_sdm_subscriptionsList);
|
||||
goto end;
|
||||
additional_sdm_subscriptionsList = OpenAPI_list_create();
|
||||
|
||||
cJSON_ArrayForEach(additional_sdm_subscriptions_local, additional_sdm_subscriptions) {
|
||||
if (!cJSON_IsObject(additional_sdm_subscriptions_local)) {
|
||||
ogs_error("OpenAPI_data_change_notify_parseFromJSON() failed [additional_sdm_subscriptions]");
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_sdm_subscription_1_t *additional_sdm_subscriptionsItem = OpenAPI_sdm_subscription_1_parseFromJSON(additional_sdm_subscriptions_local);
|
||||
if (!additional_sdm_subscriptionsItem) {
|
||||
ogs_error("No additional_sdm_subscriptionsItem");
|
||||
OpenAPI_list_free(additional_sdm_subscriptionsList);
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_list_add(additional_sdm_subscriptionsList, additional_sdm_subscriptionsItem);
|
||||
}
|
||||
|
||||
OpenAPI_list_add(additional_sdm_subscriptionsList, additional_sdm_subscriptionsItem);
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *subscription_data_subscriptions = cJSON_GetObjectItemCaseSensitive(data_change_notifyJSON, "subscriptionDataSubscriptions");
|
||||
|
||||
OpenAPI_list_t *subscription_data_subscriptionsList;
|
||||
subscription_data_subscriptions = cJSON_GetObjectItemCaseSensitive(data_change_notifyJSON, "subscriptionDataSubscriptions");
|
||||
if (subscription_data_subscriptions) {
|
||||
cJSON *subscription_data_subscriptions_local_nonprimitive;
|
||||
if (!cJSON_IsArray(subscription_data_subscriptions)){
|
||||
ogs_error("OpenAPI_data_change_notify_parseFromJSON() failed [subscription_data_subscriptions]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
subscription_data_subscriptionsList = OpenAPI_list_create();
|
||||
|
||||
cJSON_ArrayForEach(subscription_data_subscriptions_local_nonprimitive, subscription_data_subscriptions ) {
|
||||
if (!cJSON_IsObject(subscription_data_subscriptions_local_nonprimitive)) {
|
||||
cJSON *subscription_data_subscriptions_local = NULL;
|
||||
if (!cJSON_IsArray(subscription_data_subscriptions)) {
|
||||
ogs_error("OpenAPI_data_change_notify_parseFromJSON() failed [subscription_data_subscriptions]");
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_subscription_data_subscriptions_t *subscription_data_subscriptionsItem = OpenAPI_subscription_data_subscriptions_parseFromJSON(subscription_data_subscriptions_local_nonprimitive);
|
||||
|
||||
if (!subscription_data_subscriptionsItem) {
|
||||
ogs_error("No subscription_data_subscriptionsItem");
|
||||
OpenAPI_list_free(subscription_data_subscriptionsList);
|
||||
goto end;
|
||||
subscription_data_subscriptionsList = OpenAPI_list_create();
|
||||
|
||||
cJSON_ArrayForEach(subscription_data_subscriptions_local, subscription_data_subscriptions) {
|
||||
if (!cJSON_IsObject(subscription_data_subscriptions_local)) {
|
||||
ogs_error("OpenAPI_data_change_notify_parseFromJSON() failed [subscription_data_subscriptions]");
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_subscription_data_subscriptions_t *subscription_data_subscriptionsItem = OpenAPI_subscription_data_subscriptions_parseFromJSON(subscription_data_subscriptions_local);
|
||||
if (!subscription_data_subscriptionsItem) {
|
||||
ogs_error("No subscription_data_subscriptionsItem");
|
||||
OpenAPI_list_free(subscription_data_subscriptionsList);
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_list_add(subscription_data_subscriptionsList, subscription_data_subscriptionsItem);
|
||||
}
|
||||
|
||||
OpenAPI_list_add(subscription_data_subscriptionsList, subscription_data_subscriptionsItem);
|
||||
}
|
||||
}
|
||||
|
||||
data_change_notify_local_var = OpenAPI_data_change_notify_create (
|
||||
original_callback_reference ? original_callback_referenceList : NULL,
|
||||
ue_id ? ogs_strdup(ue_id->valuestring) : NULL,
|
||||
ue_id && !cJSON_IsNull(ue_id) ? ogs_strdup(ue_id->valuestring) : NULL,
|
||||
notify_items ? notify_itemsList : NULL,
|
||||
sdm_subscription ? sdm_subscription_local_nonprim : NULL,
|
||||
additional_sdm_subscriptions ? additional_sdm_subscriptionsList : NULL,
|
||||
|
|
@ -300,6 +304,38 @@ OpenAPI_data_change_notify_t *OpenAPI_data_change_notify_parseFromJSON(cJSON *da
|
|||
|
||||
return data_change_notify_local_var;
|
||||
end:
|
||||
if (original_callback_referenceList) {
|
||||
OpenAPI_list_for_each(original_callback_referenceList, node) {
|
||||
ogs_free(node->data);
|
||||
}
|
||||
OpenAPI_list_free(original_callback_referenceList);
|
||||
original_callback_referenceList = NULL;
|
||||
}
|
||||
if (notify_itemsList) {
|
||||
OpenAPI_list_for_each(notify_itemsList, node) {
|
||||
OpenAPI_notify_item_free(node->data);
|
||||
}
|
||||
OpenAPI_list_free(notify_itemsList);
|
||||
notify_itemsList = NULL;
|
||||
}
|
||||
if (sdm_subscription_local_nonprim) {
|
||||
OpenAPI_sdm_subscription_1_free(sdm_subscription_local_nonprim);
|
||||
sdm_subscription_local_nonprim = NULL;
|
||||
}
|
||||
if (additional_sdm_subscriptionsList) {
|
||||
OpenAPI_list_for_each(additional_sdm_subscriptionsList, node) {
|
||||
OpenAPI_sdm_subscription_1_free(node->data);
|
||||
}
|
||||
OpenAPI_list_free(additional_sdm_subscriptionsList);
|
||||
additional_sdm_subscriptionsList = NULL;
|
||||
}
|
||||
if (subscription_data_subscriptionsList) {
|
||||
OpenAPI_list_for_each(subscription_data_subscriptionsList, node) {
|
||||
OpenAPI_subscription_data_subscriptions_free(node->data);
|
||||
}
|
||||
OpenAPI_list_free(subscription_data_subscriptionsList);
|
||||
subscription_data_subscriptionsList = NULL;
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue