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

@ -139,10 +139,10 @@ OpenAPI_pp_active_time_t *OpenAPI_pp_active_time_parseFromJSON(cJSON *pp_active_
pp_active_time_local_var = OpenAPI_pp_active_time_create (
active_time->valuedouble,
ogs_strdup(af_instance_id->valuestring),
ogs_strdup_or_assert(af_instance_id->valuestring),
reference_id->valuedouble,
validity_time ? ogs_strdup(validity_time->valuestring) : NULL,
mtc_provider_information ? ogs_strdup(mtc_provider_information->valuestring) : NULL
validity_time ? ogs_strdup_or_assert(validity_time->valuestring) : NULL,
mtc_provider_information ? ogs_strdup_or_assert(mtc_provider_information->valuestring) : NULL
);
return pp_active_time_local_var;