misc fixies

This commit is contained in:
mark 2006-12-29 05:21:07 +00:00
parent 1df688e912
commit fe4c9e4f73
4 changed files with 23 additions and 19 deletions

View file

@ -1,4 +1,5 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Threading;
@ -2408,8 +2409,10 @@ namespace Server.Multis
while( count > 0 )
{
SendQueueEntry sqe = null;
lock ( m_SendQueueSyncRoot )
SendQueueEntry sqe = m_SendQueue.Dequeue();
sqe = m_SendQueue.Dequeue();
try
{