Commit ea579dc7 authored by aligungr's avatar aligungr

T3519 handling bug fix

parent 7c049cd3
......@@ -42,11 +42,10 @@ void NasMm::receiveIdentityRequest(const nas::IdentityRequest &msg)
nas::IE5gsMobileIdentity NasMm::getOrGenerateSuci()
{
if (m_timers->t3519.isRunning())
if (m_timers->t3519.isRunning() && m_storage.m_storedSuci.type != nas::EIdentityType::NO_IDENTITY)
return m_storage.m_storedSuci;
m_storage.m_storedSuci = generateSuci();
m_timers->t3519.start();
if (m_storage.m_storedSuci.type == nas::EIdentityType::NO_IDENTITY)
......
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