diff options
author | John Hurliman | 2009-10-09 02:18:25 -0700 |
---|---|---|
committer | John Hurliman | 2009-10-09 02:18:25 -0700 |
commit | 76a5cae0b4170b191e370a663bb6355b4dc38fa2 (patch) | |
tree | 88ea29993407a1cc5edd932e3bef08befe6bf85f | |
parent | Added more debugging output to the "unrecognized source" warning (diff) | |
download | opensim-SC_OLD-76a5cae0b4170b191e370a663bb6355b4dc38fa2.zip opensim-SC_OLD-76a5cae0b4170b191e370a663bb6355b4dc38fa2.tar.gz opensim-SC_OLD-76a5cae0b4170b191e370a663bb6355b4dc38fa2.tar.bz2 opensim-SC_OLD-76a5cae0b4170b191e370a663bb6355b4dc38fa2.tar.xz |
Forgot to initialize m_writeLock
-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; } } |