aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
authorTom Grimshaw2010-05-18 02:33:41 -0700
committerTom Grimshaw2010-05-18 02:33:41 -0700
commited1cfb52454410e5d03b11966fdff54d9950a28c (patch)
treed3733bb886c1f5495bb11311af3af7c4afdd1777 /OpenSim/Region
parentFix for hanging on "Connecting to region".. caused by packets being processed... (diff)
downloadopensim-SC_OLD-ed1cfb52454410e5d03b11966fdff54d9950a28c.zip
opensim-SC_OLD-ed1cfb52454410e5d03b11966fdff54d9950a28c.tar.gz
opensim-SC_OLD-ed1cfb52454410e5d03b11966fdff54d9950a28c.tar.bz2
opensim-SC_OLD-ed1cfb52454410e5d03b11966fdff54d9950a28c.tar.xz
Missed a nullref in the previous commit
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index df6a767..5b1aa86 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -11204,6 +11204,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
11204 public void ProcessPendingPackets() 11204 public void ProcessPendingPackets()
11205 { 11205 {
11206 m_IsPresenceReady = true; 11206 m_IsPresenceReady = true;
11207 if (m_pendingPackets == null)
11208 return;
11207 foreach (Packet p in m_pendingPackets) 11209 foreach (Packet p in m_pendingPackets)
11208 { 11210 {
11209 ProcessInPacket(p); 11211 ProcessInPacket(p);