Commit 1001c2be authored by Dong Anyuan's avatar Dong Anyuan

Fix Coverity Scan CID 340245 (Variable Sparams going out of scope leaks the storage it points to.)

parent 62eccc00
...@@ -5399,6 +5399,9 @@ rrc_eNB_generate_HO_RRCConnectionReconfiguration(const protocol_ctxt_t *const ct ...@@ -5399,6 +5399,9 @@ rrc_eNB_generate_HO_RRCConnectionReconfiguration(const protocol_ctxt_t *const ct
free(securityConfigHO); free(securityConfigHO);
securityConfigHO = NULL; securityConfigHO = NULL;
free(Sparams);
Sparams = NULL;
} }
void void
......
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