mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-04 22:30:09 +00:00
Add more memory log
This commit is contained in:
parent
80a9497afd
commit
118d62d42d
657 changed files with 4179 additions and 3131 deletions
|
|
@ -265,15 +265,15 @@ OpenAPI_extended_problem_details_t *OpenAPI_extended_problem_details_parseFromJS
|
|||
}
|
||||
|
||||
extended_problem_details_local_var = OpenAPI_extended_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,
|
||||
acceptable_serv_info ? acceptable_serv_info_local_nonprim : NULL
|
||||
);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue