Commit db137bf1 authored by Dong Anyuan's avatar Dong Anyuan

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

parent 47758322
...@@ -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);
......
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