Added locking in AccessModule to prevent possible errors when shutting down a simulator that has >1 region
parent
e16403db80
commit
5229a3c51c
|
@ -90,13 +90,17 @@ namespace OpenSim.Region.CoreModules.World
|
|||
}
|
||||
|
||||
public void AddRegion(Scene scene)
|
||||
{
|
||||
lock (m_SceneList)
|
||||
{
|
||||
if (!m_SceneList.Contains(scene))
|
||||
m_SceneList.Add(scene);
|
||||
}
|
||||
}
|
||||
|
||||
public void RemoveRegion(Scene scene)
|
||||
{
|
||||
lock (m_SceneList)
|
||||
m_SceneList.Remove(scene);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue