From 37fb26c34d860a2c2d62d729a7dc9e37666b6509 Mon Sep 17 00:00:00 2001 From: Alexander Couzens Date: Thu, 22 Aug 2019 08:48:57 +0200 Subject: iu_client: try to fix it Change-Id: Ie50f1b07ec0376a2e88744f1b17aeacf07f645ee --- src/iu_client.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/iu_client.c') diff --git a/src/iu_client.c b/src/iu_client.c index d8351c7..ece1de2 100644 --- a/src/iu_client.c +++ b/src/iu_client.c @@ -820,6 +820,11 @@ static int sccp_sap_up(struct osmo_prim_hdr *oph, void *_scu) if (msgb_l2len(oph->msg)) rc = ranap_cn_rx_co(cn_ranap_handle_co, ue, msgb_l2(oph->msg), msgb_l2len(oph->msg)); + /* A Iu Release event might be used to free the UE in cn_ranap_handle_co. */ + ue = ue_conn_ctx_find(prim->u.disconnect.conn_id); + if (!ue) + break; + ue->conn_state = RANAP_CONN_STATE_DISCONNECTED; global_iu_event_cb(ue, RANAP_IU_EVENT_LINK_INVALIDATED, NULL); break; -- cgit v1.2.3