mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-10 19:15:45 -04:00
CPU/CodeCache: Fix uninitialized pointers
This commit is contained in:
@ -133,9 +133,9 @@ private:
|
||||
void InterpretCachedBlock(const CodeBlock& block);
|
||||
void InterpretUncachedBlock();
|
||||
|
||||
System* m_system;
|
||||
Core* m_core;
|
||||
Bus* m_bus;
|
||||
System* m_system = nullptr;
|
||||
Core* m_core = nullptr;
|
||||
Bus* m_bus = nullptr;
|
||||
|
||||
#ifdef WITH_RECOMPILER
|
||||
std::unique_ptr<JitCodeBuffer> m_code_buffer;
|
||||
|
Reference in New Issue
Block a user