mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 13:20:08 +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
|
|
@ -180,11 +180,19 @@ OpenAPI_wlan_performance_req_t *OpenAPI_wlan_performance_req_parseFromJSON(cJSON
|
|||
wlan_order_criter = cJSON_GetObjectItemCaseSensitive(wlan_performance_reqJSON, "wlanOrderCriter");
|
||||
if (wlan_order_criter) {
|
||||
wlan_order_criter_local_nonprim = OpenAPI_wlan_ordering_criterion_parseFromJSON(wlan_order_criter);
|
||||
if (!wlan_order_criter_local_nonprim) {
|
||||
ogs_error("OpenAPI_wlan_ordering_criterion_parseFromJSON failed [wlan_order_criter]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
order = cJSON_GetObjectItemCaseSensitive(wlan_performance_reqJSON, "order");
|
||||
if (order) {
|
||||
order_local_nonprim = OpenAPI_matching_direction_parseFromJSON(order);
|
||||
if (!order_local_nonprim) {
|
||||
ogs_error("OpenAPI_matching_direction_parseFromJSON failed [order]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
wlan_performance_req_local_var = OpenAPI_wlan_performance_req_create (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue