diff options
author | diva | 2009-01-31 00:15:13 +0000 |
---|---|---|
committer | diva | 2009-01-31 00:15:13 +0000 |
commit | 360eb239b30230abd5879482b561e0bf713be958 (patch) | |
tree | c77c24f33aee912facff778494c2bb112135c331 | |
parent | Bug fix on posting assets onto foreign users inventory. Check that the key is... (diff) | |
download | opensim-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.
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 5 |
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; |