[SBI] Crash occurs when ENUM in the MAP (#2103)

This commit is contained in:
Sukchan Lee 2023-03-01 17:50:25 +09:00
parent ce668c556c
commit 969c116e77
1097 changed files with 266728 additions and 42047 deletions

View file

@ -22,18 +22,26 @@ OpenAPI_route_information_t *OpenAPI_route_information_create(
void OpenAPI_route_information_free(OpenAPI_route_information_t *route_information)
{
OpenAPI_lnode_t *node = NULL;
if (NULL == route_information) {
return;
}
OpenAPI_lnode_t *node;
ogs_free(route_information->ipv4_addr);
ogs_free(route_information->ipv6_addr);
if (route_information->ipv4_addr) {
ogs_free(route_information->ipv4_addr);
route_information->ipv4_addr = NULL;
}
if (route_information->ipv6_addr) {
ogs_free(route_information->ipv6_addr);
route_information->ipv6_addr = NULL;
}
ogs_free(route_information);
}
cJSON *OpenAPI_route_information_convertToJSON(OpenAPI_route_information_t *route_information)
{
cJSON *item = NULL;
OpenAPI_lnode_t *node = NULL;
if (route_information == NULL) {
ogs_error("OpenAPI_route_information_convertToJSON() failed [RouteInformation]");
@ -67,38 +75,39 @@ end:
OpenAPI_route_information_t *OpenAPI_route_information_parseFromJSON(cJSON *route_informationJSON)
{
OpenAPI_route_information_t *route_information_local_var = NULL;
cJSON *ipv4_addr = cJSON_GetObjectItemCaseSensitive(route_informationJSON, "ipv4Addr");
OpenAPI_lnode_t *node = NULL;
cJSON *ipv4_addr = NULL;
cJSON *ipv6_addr = NULL;
cJSON *port_number = NULL;
ipv4_addr = cJSON_GetObjectItemCaseSensitive(route_informationJSON, "ipv4Addr");
if (ipv4_addr) {
if (!cJSON_IsString(ipv4_addr)) {
if (!cJSON_IsString(ipv4_addr) && !cJSON_IsNull(ipv4_addr)) {
ogs_error("OpenAPI_route_information_parseFromJSON() failed [ipv4_addr]");
goto end;
}
}
cJSON *ipv6_addr = cJSON_GetObjectItemCaseSensitive(route_informationJSON, "ipv6Addr");
ipv6_addr = cJSON_GetObjectItemCaseSensitive(route_informationJSON, "ipv6Addr");
if (ipv6_addr) {
if (!cJSON_IsString(ipv6_addr)) {
if (!cJSON_IsString(ipv6_addr) && !cJSON_IsNull(ipv6_addr)) {
ogs_error("OpenAPI_route_information_parseFromJSON() failed [ipv6_addr]");
goto end;
}
}
cJSON *port_number = cJSON_GetObjectItemCaseSensitive(route_informationJSON, "portNumber");
port_number = cJSON_GetObjectItemCaseSensitive(route_informationJSON, "portNumber");
if (!port_number) {
ogs_error("OpenAPI_route_information_parseFromJSON() failed [port_number]");
goto end;
}
if (!cJSON_IsNumber(port_number)) {
ogs_error("OpenAPI_route_information_parseFromJSON() failed [port_number]");
goto end;
}
route_information_local_var = OpenAPI_route_information_create (
ipv4_addr ? ogs_strdup(ipv4_addr->valuestring) : NULL,
ipv6_addr ? ogs_strdup(ipv6_addr->valuestring) : NULL,
ipv4_addr && !cJSON_IsNull(ipv4_addr) ? ogs_strdup(ipv4_addr->valuestring) : NULL,
ipv6_addr && !cJSON_IsNull(ipv6_addr) ? ogs_strdup(ipv6_addr->valuestring) : NULL,
port_number->valuedouble
);