Guard against locking a nullref to avoid build break
parent
5dcbbb726a
commit
4a0911bdbd
|
@ -179,6 +179,9 @@ namespace OpenSim.Region.Framework.Scenes
|
|||
|
||||
public void Reset()
|
||||
{
|
||||
if (m_pendingObjects == null)
|
||||
return;
|
||||
|
||||
lock (m_pendingObjects)
|
||||
{
|
||||
if (m_pendingObjects != null)
|
||||
|
|
Loading…
Reference in New Issue