diff options
Hopefully fixes mantis #3063.
Diffstat (limited to 'OpenSim/Region/ClientStack')
-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; |