Commit fdde5158 authored by Alexandre Julliard's avatar Alexandre Julliard

winex11: Clear the thread data explicitly on detach.

parent eb5127df
......@@ -609,6 +609,8 @@ static void thread_detach(void)
if (data->font_set) XFreeFontSet( data->display, data->font_set );
XCloseDisplay( data->display );
HeapFree( GetProcessHeap(), 0, data );
/* clear data in case we get re-entered from user32 before the thread is truly dead */
TlsSetValue( thread_data_tls_index, NULL );
}
}
......
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