mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Tier0: initialize CThreadFastMutex member vars
Must be null
This commit is contained in:
parent
8ce0412405
commit
184365f135
@ -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);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user