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

@ -260,15 +260,15 @@ OpenAPI_ext_problem_details_t *OpenAPI_ext_problem_details_parseFromJSON(cJSON *
}
ext_problem_details_local_var = OpenAPI_ext_problem_details_create (
type ? ogs_strdup(type->valuestring) : NULL,
title ? ogs_strdup(title->valuestring) : NULL,
type ? ogs_strdup_or_assert(type->valuestring) : NULL,
title ? ogs_strdup_or_assert(title->valuestring) : NULL,
status ? status->valuedouble : 0,
detail ? ogs_strdup(detail->valuestring) : NULL,
instance ? ogs_strdup(instance->valuestring) : NULL,
cause ? ogs_strdup(cause->valuestring) : NULL,
detail ? ogs_strdup_or_assert(detail->valuestring) : NULL,
instance ? ogs_strdup_or_assert(instance->valuestring) : NULL,
cause ? ogs_strdup_or_assert(cause->valuestring) : NULL,
invalid_params ? invalid_paramsList : NULL,
supported_features ? ogs_strdup(supported_features->valuestring) : NULL,
target_scp ? ogs_strdup(target_scp->valuestring) : NULL,
supported_features ? ogs_strdup_or_assert(supported_features->valuestring) : NULL,
target_scp ? ogs_strdup_or_assert(target_scp->valuestring) : NULL,
remote_error ? remote_error->valueint : 0
);