Fix what apepars to be a bug in DoubleQueue<T>.Enqueue(Queue<T> q, T data) where the q parmater is ignored and everyghig is always placed on m_lowQueue.

No actual impact presently since nothing ends up calling EnqueueHigh()
TeleportWork
Justin Clark-Casey (justincc) 2013-07-18 01:23:33 +01:00
parent 6293614074
commit 077be8b496
1 changed files with 1 additions and 1 deletions

View File

@ -2253,7 +2253,7 @@ namespace OpenSim.Framework
{
lock (m_syncRoot)
{
m_lowQueue.Enqueue(data);
q.Enqueue(data);
m_s.WaitOne(0);
m_s.Release();
}