mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-02 21:30:10 +00:00
Use talloc for all memory pool (#1263)
This commit is contained in:
parent
49d9ed03c7
commit
b988e7edce
768 changed files with 4632 additions and 4901 deletions
|
|
@ -9,10 +9,9 @@ OpenAPI_ebi_arp_mapping_t *OpenAPI_ebi_arp_mapping_create(
|
|||
OpenAPI_arp_t *arp
|
||||
)
|
||||
{
|
||||
OpenAPI_ebi_arp_mapping_t *ebi_arp_mapping_local_var = OpenAPI_malloc(sizeof(OpenAPI_ebi_arp_mapping_t));
|
||||
if (!ebi_arp_mapping_local_var) {
|
||||
return NULL;
|
||||
}
|
||||
OpenAPI_ebi_arp_mapping_t *ebi_arp_mapping_local_var = ogs_malloc(sizeof(OpenAPI_ebi_arp_mapping_t));
|
||||
ogs_assert(ebi_arp_mapping_local_var);
|
||||
|
||||
ebi_arp_mapping_local_var->eps_bearer_id = eps_bearer_id;
|
||||
ebi_arp_mapping_local_var->arp = arp;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue