Fixed bug 3996 - Corrupted or over-released critical section on SDL_Quit (SDL_event_watchers_lock)

Andrew

This likely comes down to an additional 'unlock' being called before destroying it, without a matching 'lock'.
This commit is contained in:
Sam Lantinga 2017-12-12 16:10:20 -08:00
parent 2afc0b7fa5
commit ca7297668a

View File

@ -369,7 +369,6 @@ SDL_StopEventLoop(void)
}
if (SDL_event_watchers_lock) {
SDL_UnlockMutex(SDL_event_watchers_lock);
SDL_DestroyMutex(SDL_event_watchers_lock);
SDL_event_watchers_lock = NULL;
}