From 9076bc05cb36d3ed99890b2e3f57f6d06f4a7e93 Mon Sep 17 00:00:00 2001 From: sphoorthi Date: Thu, 29 Oct 2020 11:44:51 +0530 Subject: [PATCH] fix for RlcUlActvTsk not getting hit Change-Id: I03dc51d30a8656f76182a7d805ed2db8edf35f9e Signed-off-by: sphoorthi --- src/5gnrrlc/rlc_msg_hdl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/5gnrrlc/rlc_msg_hdl.c b/src/5gnrrlc/rlc_msg_hdl.c index 063346596..9b33b2692 100644 --- a/src/5gnrrlc/rlc_msg_hdl.c +++ b/src/5gnrrlc/rlc_msg_hdl.c @@ -451,7 +451,7 @@ uint8_t RlcProcUlData(Pst *pst, RlcData *ulData) } } - for(pduIdx = 0; pduIdx < ulData->numPdu; idx++) + for(pduIdx = 0; pduIdx < ulData->numPdu; pduIdx++) { RLC_FREE_SHRABL_BUF(pst->region, pst->pool, ulData->pduInfo[pduIdx].pduBuf, \ ulData->pduInfo[pduIdx].pduLen); -- 2.16.6