Commit 06b55e3f authored by Xenofon Foukas's avatar Xenofon Foukas

Fixed bug in creation of ul_cqi_report

parent 47d3d773
......@@ -633,7 +633,7 @@ int enb_agent_mac_stats_reply(mid_t mod_id,
if(ul_report == NULL)
goto error;
//Fill each UL report of the UE for each of the configured report types
for(j = 0; j++; j < full_ul_report->n_cqi_meas) {
for(j = 0; j < full_ul_report->n_cqi_meas; j++) {
ul_report[j] = malloc(sizeof(Protocol__PrpUlCqi));
if(ul_report[j] == NULL)
goto error;
......
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