ncm: hot take, uninitialized data bad

This commit is contained in:
Michael Scire
2022-03-22 14:02:14 -07:00
committed by SciresM
parent dfcb5005d2
commit a89c5dd5d7
18 changed files with 36 additions and 36 deletions

View File

@@ -37,7 +37,7 @@ namespace ams::ncm {
u64 m_counter;
os::SdkMutex m_mutex;
public:
RightsIdCache() : m_mutex() {
RightsIdCache() : m_entries(), m_counter(2), m_mutex() {
this->Invalidate();
}