Tier0: initialize CThreadFastMutex member vars

Must be null
This commit is contained in:
Kawe Mazidjatari 2024-01-16 21:22:28 +01:00
parent 8ce0412405
commit 184365f135

View File

@ -275,6 +275,14 @@ inline ThreadId_t(*v_DeclareCurrentThreadIsMainThread)(void);
class CThreadFastMutex
{
public:
CThreadFastMutex()
: m_nOwnerID(NULL)
, m_nDepth(NULL)
, m_lAddend(NULL)
, m_hSemaphore(NULL)
{
}
int Lock(void);
int Unlock(void);