mirror of https://github.com/PCSX2/pcsx2.git
Utilities: Initialize all class members
CID 147010 (#1 of 1): Uninitialized pointer field (UNINIT_CTOR)4. uninit_member: Non-static class member Enabled is not initialized in this constructor nor in any functions that it calls.
This commit is contained in:
parent
b2ee732321
commit
cfd02bff53
|
@ -77,7 +77,7 @@ public:
|
|||
bool Enabled;
|
||||
|
||||
protected:
|
||||
BaseTraceLogSource() {}
|
||||
BaseTraceLogSource() : m_Descriptor(NULL), Enabled(false) {}
|
||||
|
||||
public:
|
||||
TraceLog_ImplementBaseAPI(BaseTraceLogSource)
|
||||
|
|
Loading…
Reference in New Issue