# HG changeset patch # User Sam Lantinga # Date 1253687728 0 # Node ID 88aa213ffc7b9a381c79ea6a96fbdd5c739c2edb # Parent 9cb722ce769c4db06c5989df35f52b373e33c0e6 Possibly fixed bug #601, definitely fixed a potential issue with threads stopping and starting in rapid succession. diff -r 9cb722ce769c -r 88aa213ffc7b src/thread/SDL_thread.c --- a/src/thread/SDL_thread.c Wed Sep 23 05:16:54 2009 +0000 +++ b/src/thread/SDL_thread.c Wed Sep 23 06:35:28 2009 +0000 @@ -134,9 +134,11 @@ } SDL_mutexV(thread_lock); +#if 0 /* There could be memory corruption if another thread is starting */ if ( SDL_Threads == NULL ) { SDL_ThreadsQuit(); } +#endif } /* The default (non-thread-safe) global error variable */