mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 21:30:10 +00:00
[SBI] Modified Exception handler on error (#2169)
This commit is contained in:
parent
5f377d0126
commit
6b17bffdfd
646 changed files with 4920 additions and 735 deletions
|
|
@ -169,7 +169,6 @@ OpenAPI_network_area_info_2_t *OpenAPI_network_area_info_2_parseFromJSON(cJSON *
|
|||
OpenAPI_ecgi_1_t *ecgisItem = OpenAPI_ecgi_1_parseFromJSON(ecgis_local);
|
||||
if (!ecgisItem) {
|
||||
ogs_error("No ecgisItem");
|
||||
OpenAPI_list_free(ecgisList);
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_list_add(ecgisList, ecgisItem);
|
||||
|
|
@ -194,7 +193,6 @@ OpenAPI_network_area_info_2_t *OpenAPI_network_area_info_2_parseFromJSON(cJSON *
|
|||
OpenAPI_ncgi_1_t *ncgisItem = OpenAPI_ncgi_1_parseFromJSON(ncgis_local);
|
||||
if (!ncgisItem) {
|
||||
ogs_error("No ncgisItem");
|
||||
OpenAPI_list_free(ncgisList);
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_list_add(ncgisList, ncgisItem);
|
||||
|
|
@ -219,7 +217,6 @@ OpenAPI_network_area_info_2_t *OpenAPI_network_area_info_2_parseFromJSON(cJSON *
|
|||
OpenAPI_global_ran_node_id_1_t *g_ran_node_idsItem = OpenAPI_global_ran_node_id_1_parseFromJSON(g_ran_node_ids_local);
|
||||
if (!g_ran_node_idsItem) {
|
||||
ogs_error("No g_ran_node_idsItem");
|
||||
OpenAPI_list_free(g_ran_node_idsList);
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_list_add(g_ran_node_idsList, g_ran_node_idsItem);
|
||||
|
|
@ -244,7 +241,6 @@ OpenAPI_network_area_info_2_t *OpenAPI_network_area_info_2_parseFromJSON(cJSON *
|
|||
OpenAPI_tai_1_t *taisItem = OpenAPI_tai_1_parseFromJSON(tais_local);
|
||||
if (!taisItem) {
|
||||
ogs_error("No taisItem");
|
||||
OpenAPI_list_free(taisList);
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_list_add(taisList, taisItem);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue