Core/Entities: nullify m_uint32Values after object deletion for better detection of access to deleted objects.

This commit is contained in:
QAston
2013-03-04 16:30:54 +01:00
parent 34d9478186
commit 26cbf5f6ba

View File

@@ -118,6 +118,7 @@ Object::~Object()
}
delete [] m_uint32Values;
m_uint32Values = 0;
}
void Object::_InitValues()