Commit d24f5323 authored by Xenofon Foukas's avatar Xenofon Foukas

Fixed bug in de-allocation of p0_pucch report

parent d153208f
......@@ -658,12 +658,9 @@ int enb_agent_mac_stats_reply(mid_t mod_id,
ul_report[j]->serv_cell_index = 0;
ul_report[j]->has_serv_cell_index = 1;
/*if(get_p0_pucch_dbm(enb_id,i) != -1){
ul_report[j]->p0_pucch_dbm = get_p0_pucch_dbm(enb_id,i);
ul_report[j]->has_p0_pucch_dbm = 1;
}*/
//Set the list of UL reports of this UE to the full UL report
full_ul_report->cqi_meas = ul_report;
full_ul_report->n_pucch_dbm = MAX_NUM_CCs;
full_ul_report->pucch_dbm = malloc(sizeof(Protocol__PrpPucchDbm *) * full_ul_report->n_pucch_dbm);
......@@ -843,11 +840,11 @@ int enb_agent_mac_destroy_stats_reply(Protocol__ProgranMessage *msg) {
free(ul_report->cqi_meas[j]);
}
free(ul_report->cqi_meas);
}
for (j = 0; j < ul_report->n_pucch_dbm; j++) {
free(ul_report->pucch_dbm[j]);
}
free(ul_report->pucch_dbm);
}
free(reply->ue_report[i]);
}
free(reply->ue_report);
......
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