Terrible typo in the previous commit!

0.6.8-post-fixes
John Hurliman 2009-10-22 11:07:23 -07:00
parent 6ca4b0f366
commit 36b0e5e1d3
1 changed files with 1 additions and 1 deletions

View File

@ -1345,7 +1345,7 @@ namespace OpenSim.Framework
wrapper.FireAndForget(callback, obj);
break;
case FireAndForgetMethod.SmartThreadPool:
if (m_ThreadPool != null)
if (m_ThreadPool == null)
m_ThreadPool = new SmartThreadPool(2000, 15, 2);
m_ThreadPool.QueueWorkItem(delegate(object o) { callback(o); return null; }, obj);
break;