diff options
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLUDPClientCollection.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLUDPClientCollection.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLUDPClientCollection.cs b/OpenSim/Region/ClientStack/LindenUDP/LLUDPClientCollection.cs index 2222a33..2972d46 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLUDPClientCollection.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLUDPClientCollection.cs | |||
@@ -60,7 +60,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
60 | private ImmutableMap<IPEndPoint, LLUDPClient> m_dict; | 60 | private ImmutableMap<IPEndPoint, LLUDPClient> m_dict; |
61 | /// <summary>Immutability grants thread safety for concurrent reads and | 61 | /// <summary>Immutability grants thread safety for concurrent reads and |
62 | /// read-writes, but not concurrent writes</summary> | 62 | /// read-writes, but not concurrent writes</summary> |
63 | private object m_writeLock; | 63 | private object m_writeLock = new object(); |
64 | 64 | ||
65 | /// <summary>Number of clients in the collection</summary> | 65 | /// <summary>Number of clients in the collection</summary> |
66 | public int Count { get { return m_dict.Count; } } | 66 | public int Count { get { return m_dict.Count; } } |