Commit 4df53ffe authored by Manu Agrawal's avatar Manu Agrawal

Fix done for the error seen in testcase 10.7.1

parent 24ac9de1
...@@ -3278,7 +3278,6 @@ void rrc_eNB_generate_defaultRRCConnectionReconfiguration(const protocol_ctxt_t ...@@ -3278,7 +3278,6 @@ void rrc_eNB_generate_defaultRRCConnectionReconfiguration(const protocol_ctxt_t
{ {
uint8_t num_drb = 0; uint8_t num_drb = 0;
LTE_DL_DCCH_Message_t *dl_dcch_msg=NULL; LTE_DL_DCCH_Message_t *dl_dcch_msg=NULL;
long logicalChannelIdentityT = 3;
uper_decode(NULL, uper_decode(NULL,
&asn_DEF_LTE_DL_DCCH_Message, &asn_DEF_LTE_DL_DCCH_Message,
(void **)&dl_dcch_msg, (void **)&dl_dcch_msg,
...@@ -3366,8 +3365,7 @@ void rrc_eNB_generate_defaultRRCConnectionReconfiguration(const protocol_ctxt_t ...@@ -3366,8 +3365,7 @@ void rrc_eNB_generate_defaultRRCConnectionReconfiguration(const protocol_ctxt_t
} }
// NN: this is the 1st DRB for this ue, so set it to 1 // NN: this is the 1st DRB for this ue, so set it to 1
DRB_config->logicalChannelIdentity = CALLOC(1, sizeof(long)); DRB_config->logicalChannelIdentity = CALLOC(1, sizeof(long));
*(DRB_config->logicalChannelIdentity) = logicalChannelIdentityT; // value : x+2 *(DRB_config->logicalChannelIdentity) = *(p_drb->list.array[drb_idx]->logicalChannelIdentity); // value : x+2
logicalChannelIdentityT++;
DRB_rlc_config = CALLOC(1, sizeof(*DRB_rlc_config)); DRB_rlc_config = CALLOC(1, sizeof(*DRB_rlc_config));
DRB_config->rlc_Config = DRB_rlc_config; DRB_config->rlc_Config = DRB_rlc_config;
#ifdef RRC_DEFAULT_RAB_IS_AM #ifdef RRC_DEFAULT_RAB_IS_AM
......
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