aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2017-12-25 00:00:04 +0100
committerNeels Hofmeyr <neels@hofmeyr.de>2017-12-25 00:46:12 +0100
commit23f3fdc6b25d8c5fc5a8f7f23eb69d2ac3d712b3 (patch)
tree2e1e6be0c8baad4f58d6575666d7a85daed3aa73
parent4e2681df26399e2ff6260f3eaaeca23c3e25bfa6 (diff)
comments: hnbgw_rua.c: remove obsolete fixmes for asn1 free
The comments are all right above the line that does the proper asn1 free step. Change-Id: I60e3be8c56ecc75c22e76f9e9dce8c72753e153b
-rw-r--r--src/hnbgw_rua.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/hnbgw_rua.c b/src/hnbgw_rua.c
index 58bb23b..b2b8792 100644
--- a/src/hnbgw_rua.c
+++ b/src/hnbgw_rua.c
@@ -361,7 +361,7 @@ static int rua_rx_init_connect(struct msgb *msg, ANY_t *in)
rc = rua_to_scu(hnb, ies.cN_DomainIndicator, OSMO_SCU_PRIM_N_CONNECT,
context_id, 0, ies.ranaP_Message.buf,
ies.ranaP_Message.size);
- /* FIXME: what to do with the asn1c-allocated memory */
+
rua_free_connecties(&ies);
return rc;
@@ -396,7 +396,6 @@ static int rua_rx_init_disconnect(struct msgb *msg, ANY_t *in)
OSMO_SCU_PRIM_N_DISCONNECT,
context_id, scu_cause, ranap_data, ranap_len);
- /* FIXME: what to do with the asn1c-allocated memory */
rua_free_disconnecties(&ies);
return rc;
@@ -423,7 +422,6 @@ static int rua_rx_init_dt(struct msgb *msg, ANY_t *in)
context_id, 0, ies.ranaP_Message.buf,
ies.ranaP_Message.size);
- /* FIXME: what to do with the asn1c-allocated memory */
rua_free_directtransferies(&ies);
return rc;