No Issue - add mutex in EventSource

Potentially avoids a gc crash when load is high.
This commit is contained in:
Moonchild 2023-11-09 12:25:41 +01:00 committed by roytam1
commit 6c37943e1c

View file

@ -190,6 +190,7 @@ public:
bool IsClosed()
{
MutexAutoLock lock(mMutex);
return ReadyState() == CLOSED;
}