[SBI] Modified Exception handler on error (#2169)

This commit is contained in:
Sukchan Lee 2023-03-15 20:40:07 +09:00
parent 5f377d0126
commit 6b17bffdfd
646 changed files with 4920 additions and 735 deletions

View file

@ -97,6 +97,10 @@ OpenAPI_pc5_qos_flow_item_t *OpenAPI_pc5_qos_flow_item_parseFromJSON(cJSON *pc5_
pc5_flow_bit_rates = cJSON_GetObjectItemCaseSensitive(pc5_qos_flow_itemJSON, "pc5FlowBitRates");
if (pc5_flow_bit_rates) {
pc5_flow_bit_rates_local_nonprim = OpenAPI_pc5_flow_bit_rates_parseFromJSON(pc5_flow_bit_rates);
if (!pc5_flow_bit_rates_local_nonprim) {
ogs_error("OpenAPI_pc5_flow_bit_rates_parseFromJSON failed [pc5_flow_bit_rates]");
goto end;
}
}
range = cJSON_GetObjectItemCaseSensitive(pc5_qos_flow_itemJSON, "range");