From ed1cfb52454410e5d03b11966fdff54d9950a28c Mon Sep 17 00:00:00 2001 From: Tom Grimshaw Date: Tue, 18 May 2010 02:33:41 -0700 Subject: [PATCH] Missed a nullref in the previous commit --- OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index df6a767a2f..5b1aa869ec 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs @@ -11204,6 +11204,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP public void ProcessPendingPackets() { m_IsPresenceReady = true; + if (m_pendingPackets == null) + return; foreach (Packet p in m_pendingPackets) { ProcessInPacket(p);