Initialize variables in rrc/enb. Fixes #122

master
Ismael Gomez 7 years ago
parent 0d95159a2a
commit dff5a6f628

@ -264,7 +264,7 @@ public:
uint32_t cqi_idx;
bool cqi_allocated;
int cqi_sched_sf_idx;
bool cqi_sched_prb_idx;
int cqi_sched_prb_idx;
int get_drbid_config(LIBLTE_RRC_DRB_TO_ADD_MOD_STRUCT *drb, int drbid);
};

@ -699,10 +699,19 @@ rrc::ue::ue()
{
parent = NULL;
set_activity();
sr_allocated = false;
has_tmsi = false;
connect_notified = false;
transaction_id = 0;
sr_allocated = false;
sr_sched_sf_idx = 0;
sr_sched_prb_idx = 0;
sr_N_pucch = 0;
sr_I = 0;
cqi_allocated = false;
cqi_pucch = 0;
cqi_idx = 0;
cqi_sched_sf_idx = 0;
cqi_sched_prb_idx = 0;
state = RRC_STATE_IDLE;
}

Loading…
Cancel
Save