AutoResetEvent: Fixed crash when exiting process

This commit is contained in:
Souryo 2016-02-14 16:57:42 -05:00
parent 1bc046669e
commit 9aab7fd741

View file

@ -8,7 +8,8 @@ AutoResetEvent::AutoResetEvent()
AutoResetEvent::~AutoResetEvent()
{
Signal();
//Can't signal here, seems to cause process crashes when this occurs while the
//application is exiting.
}
void AutoResetEvent::Wait(int timeoutDelay)