Commit f563fdf6 authored by jperaldi's avatar jperaldi Committed by Jerome PERALDI

bug #125882 [L3 SIMU] 5G SA MCC badly encoded in SIB1: DO NOT PUSH NEED TO...

bug #125882  [L3 SIMU] 5G SA MCC badly encoded in SIB1: DO NOT PUSH NEED TO FREE MCC pointer when SIB1/ASN1 message is processed.
parent 49a2e24b
...@@ -12,8 +12,8 @@ gNBs = ...@@ -12,8 +12,8 @@ gNBs =
// Tracking area code, 0x0000 and 0xfffe are reserved values // Tracking area code, 0x0000 and 0xfffe are reserved values
tracking_area_code = 0xa000; tracking_area_code = 0xa000;
plmn_list = ({ plmn_list = ({
mcc = 208; mcc = 001;
mnc = 95; mnc = 01;
mnc_length = 2; mnc_length = 2;
snssaiList = ( snssaiList = (
{ {
...@@ -311,7 +311,7 @@ security = { ...@@ -311,7 +311,7 @@ security = {
log_config : log_config :
{ {
global_log_level ="error"; global_log_level ="error";
pkt_log_level ="error"; pkt_log_level ="debug";
#hw_log_level ="info"; #hw_log_level ="info";
#phy_log_level ="info"; #phy_log_level ="info";
#mac_log_level ="info"; #mac_log_level ="info";
......
...@@ -343,8 +343,8 @@ uint8_t do_SIB1_NR(rrc_gNB_carrier_data_t *carrier, ...@@ -343,8 +343,8 @@ uint8_t do_SIB1_NR(rrc_gNB_carrier_data_t *carrier,
asn1cSequenceAdd(nr_plmn->mnc.list, NR_MCC_MNC_Digit_t, mnc2); asn1cSequenceAdd(nr_plmn->mnc.list, NR_MCC_MNC_Digit_t, mnc2);
*mnc2=(mnc)%10; *mnc2=(mnc)%10;
if (nr_plmn->mcc != NULL) //if (nr_plmn->mcc != NULL)
RRM_FREE(nr_plmn->mcc); //RRM_FREE(nr_plmn->mcc);
}//end plmn loop }//end plmn loop
......
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