fix uninitialized members in MME NAS

This commit is contained in:
Andre Puschmann 2019-05-03 10:15:37 +02:00
parent 896ef5ee64
commit 7e5e2b142e
1 changed files with 7 additions and 1 deletions

View File

@ -34,7 +34,13 @@ nas::nas(srslte::log* nas_log = nullptr) :
m_gtpc(nullptr),
m_s1ap(nullptr),
m_hss(nullptr),
m_mme(nullptr)
m_mme(nullptr),
m_mcc(0),
m_mnc(0),
m_mme_group(0),
m_mme_code(0),
m_tac(0),
m_t3413(0)
{
}