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
|
|
@ -252,7 +252,7 @@ OpenAPI_ue_policy_set_t *OpenAPI_ue_policy_set_parseFromJSON(cJSON *ue_policy_se
|
|||
ogs_error("OpenAPI_ue_policy_set_parseFromJSON() failed [subsc_cats]");
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_list_add(subsc_catsList, ogs_strdup(subsc_cats_local->valuestring));
|
||||
OpenAPI_list_add(subsc_catsList, ogs_strdup_or_assert(subsc_cats_local->valuestring));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -295,7 +295,7 @@ OpenAPI_ue_policy_set_t *OpenAPI_ue_policy_set_parseFromJSON(cJSON *ue_policy_se
|
|||
ogs_error("OpenAPI_ue_policy_set_parseFromJSON() failed [upsis]");
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_list_add(upsisList, ogs_strdup(upsis_local->valuestring));
|
||||
OpenAPI_list_add(upsisList, ogs_strdup_or_assert(upsis_local->valuestring));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -356,7 +356,7 @@ OpenAPI_ue_policy_set_t *OpenAPI_ue_policy_set_parseFromJSON(cJSON *ue_policy_se
|
|||
ogs_error("OpenAPI_ue_policy_set_parseFromJSON() failed [os_ids]");
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_list_add(os_idsList, ogs_strdup(os_ids_local->valuestring));
|
||||
OpenAPI_list_add(os_idsList, ogs_strdup_or_assert(os_ids_local->valuestring));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -367,7 +367,7 @@ OpenAPI_ue_policy_set_t *OpenAPI_ue_policy_set_parseFromJSON(cJSON *ue_policy_se
|
|||
upsis ? upsisList : NULL,
|
||||
allowed_route_sel_descs ? allowed_route_sel_descsList : NULL,
|
||||
andsp_ind ? andsp_ind->valueint : 0,
|
||||
pei ? ogs_strdup(pei->valuestring) : NULL,
|
||||
pei ? ogs_strdup_or_assert(pei->valuestring) : NULL,
|
||||
os_ids ? os_idsList : NULL
|
||||
);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue