Add more memory log

This commit is contained in:
Sukchan Lee 2021-06-06 22:35:46 +09:00
parent 80a9497afd
commit 118d62d42d
657 changed files with 4179 additions and 3131 deletions

View file

@ -198,13 +198,13 @@ OpenAPI_flow_information_t *OpenAPI_flow_information_parseFromJSON(cJSON *flow_i
}
flow_information_local_var = OpenAPI_flow_information_create (
flow_description ? ogs_strdup(flow_description->valuestring) : NULL,
flow_description ? ogs_strdup_or_assert(flow_description->valuestring) : NULL,
eth_flow_description ? eth_flow_description_local_nonprim : NULL,
pack_filt_id ? ogs_strdup(pack_filt_id->valuestring) : NULL,
pack_filt_id ? ogs_strdup_or_assert(pack_filt_id->valuestring) : NULL,
packet_filter_usage ? packet_filter_usage->valueint : 0,
tos_traffic_class ? ogs_strdup(tos_traffic_class->valuestring) : NULL,
spi ? ogs_strdup(spi->valuestring) : NULL,
flow_label ? ogs_strdup(flow_label->valuestring) : NULL,
tos_traffic_class ? ogs_strdup_or_assert(tos_traffic_class->valuestring) : NULL,
spi ? ogs_strdup_or_assert(spi->valuestring) : NULL,
flow_label ? ogs_strdup_or_assert(flow_label->valuestring) : NULL,
flow_direction ? flow_directionVariable : 0
);