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

@ -199,13 +199,13 @@ OpenAPI_authentication_vector_t *OpenAPI_authentication_vector_parseFromJSON(cJS
authentication_vector_local_var = OpenAPI_authentication_vector_create (
av_typeVariable,
ogs_strdup(rand->valuestring),
xres ? ogs_strdup(xres->valuestring) : NULL,
ogs_strdup(autn->valuestring),
ck_prime ? ogs_strdup(ck_prime->valuestring) : NULL,
ik_prime ? ogs_strdup(ik_prime->valuestring) : NULL,
xres_star ? ogs_strdup(xres_star->valuestring) : NULL,
kausf ? ogs_strdup(kausf->valuestring) : NULL
ogs_strdup_or_assert(rand->valuestring),
xres ? ogs_strdup_or_assert(xres->valuestring) : NULL,
ogs_strdup_or_assert(autn->valuestring),
ck_prime ? ogs_strdup_or_assert(ck_prime->valuestring) : NULL,
ik_prime ? ogs_strdup_or_assert(ik_prime->valuestring) : NULL,
xres_star ? ogs_strdup_or_assert(xres_star->valuestring) : NULL,
kausf ? ogs_strdup_or_assert(kausf->valuestring) : NULL
);
return authentication_vector_local_var;