changeset 3300:34a4a01da79c

Possibly fixed bug #601, definitely fixed a potential issue with threads stopping and starting in rapid succession.
author Sam Lantinga <slouken@libsdl.org>
date Wed, 23 Sep 2009 06:37:27 +0000
parents 975fd903466b
children 047c8dcf0eb0
files src/thread/SDL_thread.c
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/thread/SDL_thread.c	Wed Sep 23 02:52:11 2009 +0000
+++ b/src/thread/SDL_thread.c	Wed Sep 23 06:37:27 2009 +0000
@@ -140,9 +140,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 */