From 1e086b34b7cce427d6b12f15046e2160036b8b0d Mon Sep 17 00:00:00 2001 From: "aa7133@att.com" Date: Mon, 6 Apr 2020 00:14:59 +0300 Subject: [PATCH] version 4.0.7 Fix bug on the counter of RANfunction definition typo error prevent from counting the thired entry from some reason change was not included Change-Id: I65229989a5123d55a203aa8c220cf6a7c8b660bf Signed-off-by: aa7133@att.com --- RIC-E2-TERMINATION/sctpThread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RIC-E2-TERMINATION/sctpThread.cpp b/RIC-E2-TERMINATION/sctpThread.cpp index f80b862..f9d86a2 100644 --- a/RIC-E2-TERMINATION/sctpThread.cpp +++ b/RIC-E2-TERMINATION/sctpThread.cpp @@ -1302,7 +1302,7 @@ int collectSetupRequestData(E2AP_PDU_t *pdu, ie->value.choice.RANfunctions_List.list.count, ie->value.choice.RANfunctions_List.list.size); } - for (auto j = 0; i < ie->value.choice.RANfunctions_List.list.count; i++) { + for (auto j = 0; j < ie->value.choice.RANfunctions_List.list.count; j++) { auto *raNfunctionItemIEs = (RANfunction_ItemIEs_t *)ie->value.choice.RANfunctions_List.list.array[j]; if (raNfunctionItemIEs->id == ProtocolIE_ID_id_RANfunction_Item && (raNfunctionItemIEs->value.present == RANfunction_ItemIEs__value_PR_RANfunction_Item)) { -- 2.16.6