Commit e12ddace authored by Jerome Peraldi's avatar Jerome Peraldi Committed by jperaldi

bug #124325 [L3 SIMU] multi cell context testing 3GPP 36523...

parent edb05779
...@@ -10489,13 +10489,14 @@ void *rrc_enb_process_itti_msg(void *notUsed) { ...@@ -10489,13 +10489,14 @@ void *rrc_enb_process_itti_msg(void *notUsed) {
struct rrc_eNB_ue_context_s *ue_context_pP = NULL; struct rrc_eNB_ue_context_s *ue_context_pP = NULL;
ue_context_pP = rrc_eNB_get_ue_context(RC.rrc[instance], SS_RRC_PDU_REQ(msg_p).rnti); ue_context_pP = rrc_eNB_get_ue_context(RC.rrc[instance], SS_RRC_PDU_REQ(msg_p).rnti);
uint8_t cc_id = ue_context_pP->ue_context.primaryCC_id; uint8_t cc_id = 0;
LOG_A(RRC, "RRC Connection Release message received \n"); LOG_A(RRC, "RRC Connection Release message received \n");
if (NULL == ue_context_pP) if (NULL == ue_context_pP)
{ {
LOG_W(RRC, "ue_context_pP is already NULL \n"); LOG_W(RRC, "ue_context_pP is already NULL \n");
} }
else { else {
cc_id = ue_context_pP->ue_context.primaryCC_id;
ue_context_pP->ue_context.ue_reestablishment_timer = 0; ue_context_pP->ue_context.ue_reestablishment_timer = 0;
ue_context_pP->ue_context.ue_release_timer = 1; ue_context_pP->ue_context.ue_release_timer = 1;
ue_context_pP->ue_context.ue_release_timer_thres = 10; ue_context_pP->ue_context.ue_release_timer_thres = 10;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment