aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs
diff options
context:
space:
mode:
authorAdam Frisby2009-05-10 20:31:45 +0000
committerAdam Frisby2009-05-10 20:31:45 +0000
commit53a350573e7751707696b1b5f34ae4ab1dbdfc5a (patch)
tree9e1c1808ecafb2734fa89d01d7e8b9818d5f20a2 /OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs
parent* Attempting to diagnose a core packet issue on Windows/.NET. Adding addition... (diff)
downloadopensim-SC_OLD-53a350573e7751707696b1b5f34ae4ab1dbdfc5a.zip
opensim-SC_OLD-53a350573e7751707696b1b5f34ae4ab1dbdfc5a.tar.gz
opensim-SC_OLD-53a350573e7751707696b1b5f34ae4ab1dbdfc5a.tar.bz2
opensim-SC_OLD-53a350573e7751707696b1b5f34ae4ab1dbdfc5a.tar.xz
* Further testing against core packet issue.
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs b/OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs
index bb0c0c7..594a943 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLPacketQueue.cs
@@ -243,8 +243,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP
243 return item; 243 return item;
244 lock (contents) 244 lock (contents)
245 { 245 {
246 if (contents.Remove(item.Sequence)) 246 if (contents.Contains(item.Sequence))
247 return item; 247 if (contents.Remove(item.Sequence))
248 return item;
248 } 249 }
249 } 250 }
250 } 251 }