aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
diff options
context:
space:
mode:
authordiva2009-01-31 00:15:13 +0000
committerdiva2009-01-31 00:15:13 +0000
commit360eb239b30230abd5879482b561e0bf713be958 (patch)
treec77c24f33aee912facff778494c2bb112135c331 /OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
parentBug fix on posting assets onto foreign users inventory. Check that the key is... (diff)
downloadopensim-SC_OLD-360eb239b30230abd5879482b561e0bf713be958.zip
opensim-SC_OLD-360eb239b30230abd5879482b561e0bf713be958.tar.gz
opensim-SC_OLD-360eb239b30230abd5879482b561e0bf713be958.tar.bz2
opensim-SC_OLD-360eb239b30230abd5879482b561e0bf713be958.tar.xz
Hopefully fixes mantis #3063.
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs5
1 files changed, 4 insertions, 1 deletions
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
5293 5293
5294 //if (handlerTextureRequest != null) 5294 //if (handlerTextureRequest != null)
5295 //OnRequestTexture(this, args); 5295 //OnRequestTexture(this, args);
5296 m_imageManager.EnqueueReq(args); 5296
5297 // in the end, we null this, so we have to check if it's null
5298 if (m_imageManager != null)
5299 m_imageManager.EnqueueReq(args);
5297 } 5300 }
5298 } 5301 }
5299 break; 5302 break;