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

@ -270,7 +270,7 @@ OpenAPI_qos_monitoring_data_t *OpenAPI_qos_monitoring_data_parseFromJSON(cJSON *
}
qos_monitoring_data_local_var = OpenAPI_qos_monitoring_data_create (
ogs_strdup(qm_id->valuestring),
ogs_strdup_or_assert(qm_id->valuestring),
req_qos_mon_params ? req_qos_mon_paramsList : NULL,
rep_freqs ? rep_freqsList : NULL,
rep_thresh_dl ? rep_thresh_dl->valuedouble : 0,
@ -278,8 +278,8 @@ OpenAPI_qos_monitoring_data_t *OpenAPI_qos_monitoring_data_parseFromJSON(cJSON *
rep_thresh_rp ? rep_thresh_rp->valuedouble : 0,
wait_time ? wait_time->valuedouble : 0,
rep_period ? rep_period->valuedouble : 0,
notify_uri ? ogs_strdup(notify_uri->valuestring) : NULL,
notify_corre_id ? ogs_strdup(notify_corre_id->valuestring) : NULL
notify_uri ? ogs_strdup_or_assert(notify_uri->valuestring) : NULL,
notify_corre_id ? ogs_strdup_or_assert(notify_corre_id->valuestring) : NULL
);
return qos_monitoring_data_local_var;