mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
Guard another nullref
This commit is contained in:
@@ -106,7 +106,7 @@ namespace OpenSim.Region.Framework.Scenes
|
||||
g.ScheduleFullUpdateToAvatar(m_presence);
|
||||
}
|
||||
|
||||
while (m_partsUpdateQueue.Count != null && m_partsUpdateQueue.Count > 0)
|
||||
while (m_partsUpdateQueue != null && m_partsUpdateQueue.Count != null && m_partsUpdateQueue.Count > 0)
|
||||
{
|
||||
SceneObjectPart part = m_partsUpdateQueue.Dequeue();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user