Hopefully fixes mantis #3063.

0.6.3-post-fixes
diva 2009-01-31 00:15:13 +00:00
parent e7a9ece410
commit 360eb239b3
1 changed files with 4 additions and 1 deletions

View File

@ -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;