ntdll: Don't try to join with the main thread.

This commit is contained in:
Alexandre Julliard 2010-11-01 11:28:38 +01:00
parent 6410ab1ce8
commit adb0703cff
1 changed files with 5 additions and 2 deletions

View File

@ -356,8 +356,11 @@ void exit_thread( int status )
{
struct ntdll_thread_data *thread_data = (struct ntdll_thread_data *)teb->SpareBytes1;
pthread_join( thread_data->pthread_id, NULL );
signal_free_thread( teb );
if (thread_data->pthread_id)
{
pthread_join( thread_data->pthread_id, NULL );
signal_free_thread( teb );
}
}
close( ntdll_get_thread_data()->wait_fd[0] );