[#231] Fix the NextEPC die in MT-Fallback

This commit is contained in:
Sukchan Lee 2019-07-28 15:09:23 +00:00
parent 50e2872ff4
commit a3c5dcd190
4 changed files with 5 additions and 8 deletions

@ -1 +1 @@
Subproject commit d5357a3b6bc6ec8e099a6f531de708198c8592f0
Subproject commit 4a6c2e2a4afcc3337b2748d0df645b4b57c0750d

View File

@ -491,9 +491,6 @@ int s1ap_build_initial_context_setup_request(
SecurityKey->bits_unused = 0;
memcpy(SecurityKey->buf, mme_ue->kenb, SecurityKey->size);
/* Workaround for asn1c library
* - More than 9 ProtocolIE cannot be built
* from InitialContextSetupRequest */
if (mme_ue->nas_eps.type == MME_EPS_TYPE_EXTENDED_SERVICE_REQUEST &&
MME_P_TMSI_IS_AVAILABLE(mme_ue)) {
@ -531,8 +528,9 @@ int s1ap_build_initial_context_setup_request(
ogs_assert(mme_ue->p_tmsi);
s1ap_uint16_to_OCTET_STRING(mme_ue->csmap->lai.lac, &LAI->lAC);
} else if (mme_ue->ueRadioCapability.buf &&
mme_ue->ueRadioCapability.size) {
}
if (mme_ue->ueRadioCapability.buf && mme_ue->ueRadioCapability.size) {
/* Set UeRadioCapability if exists */
S1AP_UERadioCapability_t *UERadioCapability = NULL;

View File

@ -11,6 +11,7 @@ nas-message-test : SUCCESS
gtp-message-test : SUCCESS
security-test : SUCCESS
sctp-test : SUCCESS
crash-test : SUCCESS
All tests passed.
])
AT_CLEANUP

View File

@ -45,9 +45,7 @@ const struct testlist {
{test_gtp_message},
{test_security},
{test_sctp},
#if 0
{test_crash},
#endif
{NULL},
};