From efc2088ced1fa7acd6bff0d52270e4919e51e9d0 Mon Sep 17 00:00:00 2001 From: "lal.harshita" Date: Tue, 6 Sep 2022 16:34:47 +0530 Subject: [PATCH] [Jira Id- ODUHIGH-462] CLA releated fixes Signed-off-by: lal.harshita Change-Id: I43fc2c6742c986a4912a5466ff6aa997f2ee6019 --- src/cu_stub/cu_f1ap_msg_hdl.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/cu_stub/cu_f1ap_msg_hdl.c b/src/cu_stub/cu_f1ap_msg_hdl.c index 76e65784f..e41d041de 100644 --- a/src/cu_stub/cu_f1ap_msg_hdl.c +++ b/src/cu_stub/cu_f1ap_msg_hdl.c @@ -11517,13 +11517,11 @@ void procF1SetupReq(uint32_t *destDuId, F1AP_PDU_t *f1apMsg) if(duDb == NULLP) { duDb = &cuCb.duInfo[cuCb.numDu]; - memset(duDb, 0, sizeof(DuDb)); - duDb->duId = duId; cuCb.numDu++; - *destDuId = duId; } - else - return; + memset(duDb, 0, sizeof(DuDb)); + duDb->duId = duId; + *destDuId = duId; break; } case ProtocolIE_ID_id_gNB_DU_Name: -- 2.16.6