[Fix] Lock it early

This commit is contained in:
sta 2016-04-04 04:48:26 +09:00
parent 655acc6528
commit 83a07a988d

View File

@ -560,7 +560,11 @@ namespace WebSocketSharp.Net
if (!_listening)
throw new InvalidOperationException ("The listener hasn't been started.");
// Lock _waitQueue early to avoid race conditions.
// Lock _ctxRegistrySync early to avoid race conditions.
lock (_ctxRegistrySync) {
if (!_listening)
throw new InvalidOperationException ("The listener is stopped/closed.");
lock (_waitQueueSync) {
var ctx = getContextFromQueue ();
if (ctx != null) {
@ -570,6 +574,7 @@ namespace WebSocketSharp.Net
_waitQueue.Add (asyncResult);
}
}
return asyncResult;
}