mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-05-16 12:25:41 -04:00
CPU/CodeCache: Fix uninitialized pointers
This commit is contained in:
parent
badfe6117e
commit
4655aa02f8
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user