mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-mgw.git
synced 2025-11-03 05:23:43 +00:00
nat: Use a ptr that was allocated by talloc
The endp is part of an array allocated by talloc and simple array members do not qualify as a context start address.
This commit is contained in:
@@ -148,7 +148,7 @@ int bsc_mgcp_policy_cb(struct mgcp_config *cfg, int endpoint, int state, const c
|
||||
talloc_free(bsc_endp->transaction_id);
|
||||
}
|
||||
|
||||
bsc_endp->transaction_id = talloc_strdup(bsc_endp, transaction_id);
|
||||
bsc_endp->transaction_id = talloc_strdup(nat, transaction_id);
|
||||
bsc_endp->bsc = bsc_con;
|
||||
|
||||
/* we need to update some bits */
|
||||
|
||||
Reference in New Issue
Block a user