Commit bdd6b0fb authored by Dong Anyuan's avatar Dong Anyuan

Fix Coverity Scan CID 21911 (Using uninitialized value data_req. Field...

Fix Coverity Scan CID 21911 (Using uninitialized value data_req. Field data_req.buffer_occupancy_in_pdus is uninitialized.)
parent 3c814127
...@@ -811,6 +811,7 @@ rlc_am_mac_data_request ( ...@@ -811,6 +811,7 @@ rlc_am_mac_data_request (
tb_p = tb_p->next; tb_p = tb_p->next;
} /* while */ } /* while */
} /* MESSAGE_CHART_GENERATOR && data_req.data.nb_elements > 0 */ } /* MESSAGE_CHART_GENERATOR && data_req.data.nb_elements > 0 */
data_req.buffer_occupancy_in_pdus = 0;
return data_req; return data_req;
} }
......
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