From 360eb239b30230abd5879482b561e0bf713be958 Mon Sep 17 00:00:00 2001 From: diva Date: Sat, 31 Jan 2009 00:15:13 +0000 Subject: Hopefully fixes mantis #3063. --- OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs') diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index 42bb783..96a274c 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs @@ -5293,7 +5293,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP //if (handlerTextureRequest != null) //OnRequestTexture(this, args); - m_imageManager.EnqueueReq(args); + + // in the end, we null this, so we have to check if it's null + if (m_imageManager != null) + m_imageManager.EnqueueReq(args); } } break; -- cgit v1.1