aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-10-30 22:32:23 +0000
committerJustin Clarke Casey2008-10-30 22:32:23 +0000
commit5feaff8524845d3475c02d1ba96465925e65e34a (patch)
tree0a74b46b64e56ee924e59077276b8fa7f2b63a19 /OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
parent* test: Test that the client stack doesn't completely blow up if a client pas... (diff)
downloadopensim-SC_OLD-5feaff8524845d3475c02d1ba96465925e65e34a.zip
opensim-SC_OLD-5feaff8524845d3475c02d1ba96465925e65e34a.tar.gz
opensim-SC_OLD-5feaff8524845d3475c02d1ba96465925e65e34a.tar.bz2
opensim-SC_OLD-5feaff8524845d3475c02d1ba96465925e65e34a.tar.xz
test: Extend malformed packet test to actually check that a valid packet can get through after the malformed ones have been sent
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index 848d31c..07af65d 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -4804,10 +4804,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP
4804 break; 4804 break;
4805 case PacketType.ObjectName: 4805 case PacketType.ObjectName:
4806 ObjectNamePacket objName = (ObjectNamePacket)Pack; 4806 ObjectNamePacket objName = (ObjectNamePacket)Pack;
4807 4807
4808 handlerObjectName = null; 4808 handlerObjectName = null;
4809 for (int i = 0; i < objName.ObjectData.Length; i++) 4809 for (int i = 0; i < objName.ObjectData.Length; i++)
4810 { 4810 {
4811 handlerObjectName = OnObjectName; 4811 handlerObjectName = OnObjectName;
4812 if (handlerObjectName != null) 4812 if (handlerObjectName != null)
4813 { 4813 {