Commit efd3e6fc authored by wujing's avatar wujing

Fix openair3/NAS/UE cppcheck error

parent 779d5db4
...@@ -443,15 +443,15 @@ static int _emm_as_data_ind(nas_user_t *user, const emm_as_data_t *msg, int *emm ...@@ -443,15 +443,15 @@ static int _emm_as_data_ind(nas_user_t *user, const emm_as_data_t *msg, int *emm
EPS_MOBILITY_MANAGEMENT_MESSAGE) { EPS_MOBILITY_MANAGEMENT_MESSAGE) {
/* Process EMM data */ /* Process EMM data */
rc = _emm_as_recv(user, plain_msg, bytes, emm_cause); rc = _emm_as_recv(user, plain_msg, bytes, emm_cause);
free(plain_msg);
} else if (header.protocol_discriminator == } else if (header.protocol_discriminator ==
EPS_SESSION_MANAGEMENT_MESSAGE) { EPS_SESSION_MANAGEMENT_MESSAGE) {
const OctetString data = {bytes, (uint8_t *)plain_msg}; const OctetString data = {bytes, (uint8_t *)plain_msg};
/* Foward ESM data to EPS session management */ /* Foward ESM data to EPS session management */
rc = lowerlayer_data_ind(user, &data); rc = lowerlayer_data_ind(user, &data);
}
free(plain_msg); free(plain_msg);
} }
}
} else { } else {
/* Process successfull lower layer transfer indication */ /* Process successfull lower layer transfer indication */
rc = lowerlayer_success(user); rc = lowerlayer_success(user);
......
...@@ -296,6 +296,8 @@ int emm_proc_security_mode_command(nas_user_t *user, int native_ksi, int ksi, ...@@ -296,6 +296,8 @@ int emm_proc_security_mode_command(nas_user_t *user, int native_ksi, int ksi,
else { else {
/* Setup EMM cause code */ /* Setup EMM cause code */
emm_cause = EMM_CAUSE_SECURITY_MODE_REJECTED; emm_cause = EMM_CAUSE_SECURITY_MODE_REJECTED;
}
}
/* Release security mode control internal data */ /* Release security mode control internal data */
if (security_data->kenb.value) { if (security_data->kenb.value) {
...@@ -303,8 +305,6 @@ int emm_proc_security_mode_command(nas_user_t *user, int native_ksi, int ksi, ...@@ -303,8 +305,6 @@ int emm_proc_security_mode_command(nas_user_t *user, int native_ksi, int ksi,
security_data->kenb.value = NULL; security_data->kenb.value = NULL;
security_data->kenb.length = 0; security_data->kenb.length = 0;
} }
}
}
/* Setup EMM procedure handler to be executed upon receiving /* Setup EMM procedure handler to be executed upon receiving
* lower layer notification */ * lower layer notification */
......
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