Commit 91be65e8 authored by Dong Anyuan's avatar Dong Anyuan

Fix Coverity Scan CID 300455 (Using uninitialized value msg when calling...

Fix Coverity Scan CID 300455 (Using uninitialized value msg when calling flexran_agent_mac_sf_trigger.)
parent bf3db975
...@@ -1346,7 +1346,7 @@ void flexran_agent_send_sr_info(mid_t mod_id) { ...@@ -1346,7 +1346,7 @@ void flexran_agent_send_sr_info(mid_t mod_id) {
void flexran_agent_send_sf_trigger(mid_t mod_id) { void flexran_agent_send_sf_trigger(mid_t mod_id) {
int size; int size;
Protocol__FlexranMessage *msg; Protocol__FlexranMessage *msg = NULL;
void *data; void *data;
int priority = 0; int priority = 0;
err_code_t err_code; err_code_t err_code;
......
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