RSP: Make sure m_SyncSystem is valid before checking m_SyncSystem->m_BaseSystem on shutdown
This commit is contained in:
parent
7cb0c258a1
commit
cd9fc5984a
|
@ -51,7 +51,7 @@ CRSPSystem::CRSPSystem() :
|
||||||
|
|
||||||
CRSPSystem::~CRSPSystem()
|
CRSPSystem::~CRSPSystem()
|
||||||
{
|
{
|
||||||
if (m_SyncSystem->m_BaseSystem != nullptr)
|
if (m_SyncSystem != nullptr && m_SyncSystem->m_BaseSystem != nullptr)
|
||||||
{
|
{
|
||||||
if (m_IMEM != nullptr)
|
if (m_IMEM != nullptr)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue