Commit 4642e1e4 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

loader: Added missing attr destroy.

parent 8a72292f
......@@ -69,6 +69,7 @@ static void init_thread( struct wine_pthread_thread_info *info )
pthread_attr_t attr;
pthread_getattr_np( pthread_self(), &attr );
pthread_attr_getstack( &attr, &info->stack_base, &info->stack_size );
pthread_attr_destroy( &attr );
#elif defined(HAVE_PTHREAD_GET_STACKSIZE_NP) && defined(HAVE_PTHREAD_GET_STACKADDR_NP)
char dummy;
info->stack_size = pthread_get_stacksize_np(pthread_self());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment