Skip to content

Commit

Permalink
[MME] Fixed a crash when no UE context (#2016)
Browse files Browse the repository at this point in the history
  • Loading branch information
acetcom committed Jan 23, 2023
1 parent f61a796 commit c72e6da
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/mme/s1ap-handler.c
Expand Up @@ -513,8 +513,7 @@ void s1ap_handle_uplink_nas_transport(
memcpy(&mme_ue->e_cgi, &enb_ue->saved.e_cgi, sizeof(ogs_e_cgi_t));
mme_ue->ue_location_timestamp = ogs_time_now();
} else {
ogs_fatal("No UE Context in UplinkNASTransport");
ogs_assert_if_reached();
ogs_error("No UE Context in UplinkNASTransport");
}

s1ap_send_to_nas(enb_ue,
Expand Down

0 comments on commit c72e6da

Please sign in to comment.