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

Fix Coverity Scan CID 60393 (Using uninitialized value pid when calling esm_ebr_context_release.)

parent 47758322
No related branches found
No related tags found
4 merge requests!650Release v1.1.0 Candidate,!620Resolve "Coverity Scan Fix (Week25)",!617Develop: Integration 2019 Week 25,!588Develop nr merge
...@@ -196,6 +196,7 @@ int esm_proc_eps_bearer_context_deactivate_request(nas_user_t *user, int ebi, in ...@@ -196,6 +196,7 @@ int esm_proc_eps_bearer_context_deactivate_request(nas_user_t *user, int ebi, in
int rc = RETURNok; int rc = RETURNok;
esm_data_t *esm_data = user->esm_data; esm_data_t *esm_data = user->esm_data;
bid = 0; bid = 0;
pid = 0;
LOG_TRACE(INFO, "ESM-PROC - EPS bearer context deactivation " LOG_TRACE(INFO, "ESM-PROC - EPS bearer context deactivation "
"requested by the network (ebi=%d)", ebi); "requested by the network (ebi=%d)", ebi);
......
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