Skip to content
Snippets Groups Projects
Commit 542bd49c authored by DONG Anyuan's avatar DONG Anyuan
Browse files

Fix Coverity Scan CID 300425 (Using uninitialized value req_msg when calling...

Fix Coverity Scan CID 300425 (Using uninitialized value req_msg when calling flexran_agent_stats_request.)
parent a7585c3f
No related branches found
No related tags found
4 merge requests!650Release v1.1.0 Candidate,!607Develop: integration 2019 week 23,!603issue429 Coverity Scan Fix (Week22),!588Develop nr merge
......@@ -746,7 +746,7 @@ err_code_t flexran_agent_enable_cont_stats_update(mid_t mod_id,
goto error;
}
Protocol__FlexranMessage *req_msg;
Protocol__FlexranMessage *req_msg = NULL;
flexran_agent_stats_request(mod_id, xid, stats_req, &req_msg);
stats_context[mod_id].stats_req = req_msg;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment