* Attempt to resolve mantis 873 by placing caps removal operations in a critical section
parent
30ea28c3b1
commit
f27f861072
|
@ -1754,6 +1754,8 @@ namespace OpenSim.Region.Environment.Scenes
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="agentId"></param>
|
/// <param name="agentId"></param>
|
||||||
public void RemoveCapsHandler(LLUUID agentId)
|
public void RemoveCapsHandler(LLUUID agentId)
|
||||||
|
{
|
||||||
|
lock (m_capsHandlers)
|
||||||
{
|
{
|
||||||
if (m_capsHandlers.ContainsKey(agentId))
|
if (m_capsHandlers.ContainsKey(agentId))
|
||||||
{
|
{
|
||||||
|
@ -1771,6 +1773,7 @@ namespace OpenSim.Region.Environment.Scenes
|
||||||
agentId, RegionInfo.RegionName);
|
agentId, RegionInfo.RegionName);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
///
|
||||||
|
|
Loading…
Reference in New Issue