Fix bad assert

Field 'm_bInitialized' should be set prior to calling this, this field was named differently and its use case was inverted, forgot to reflect changes in assert.
This commit is contained in:
Kawe Mazidjatari 2023-01-21 14:49:53 +01:00
parent 6811642734
commit 4022fbd3ad

View File

@ -54,7 +54,7 @@ void CSigCache::AddEntry(const string& svPattern, const uint64_t nRVA)
return;
}
Assert(!m_bInitialized);
Assert(m_bInitialized);
(*m_Cache.mutable_smap())[svPattern] = nRVA;
}