fixes exception thrown when client session is shutdown while

packethandler still active
0.6.5-rc1
Dr Scofield 2009-04-29 12:31:43 +00:00
parent d0753ad9ef
commit 84701701ef
1 changed files with 2 additions and 0 deletions

View File

@ -199,6 +199,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP
public void ProcessImageQueue(int count) public void ProcessImageQueue(int count)
{ {
// this can happen during Close()
if (m_client == null) return;
//Count is the number of textures we want to process in one go. //Count is the number of textures we want to process in one go.
//As part of this class re-write, that number will probably rise //As part of this class re-write, that number will probably rise