ntdll: Use call_dll_entry_point to execute TLS callbacks.

This commit is contained in:
Sebastian Lackner 2014-09-07 01:46:52 +02:00 committed by Alexandre Julliard
parent b7f77bb1fd
commit 636dc013cd
1 changed files with 1 additions and 1 deletions

View File

@ -1030,7 +1030,7 @@ static void call_tls_callbacks( HMODULE module, UINT reason )
GetCurrentThreadId(), *callback, module, reason_names[reason] );
__TRY
{
(*callback)( module, reason, NULL );
call_dll_entry_point( (DLLENTRYPROC)*callback, module, reason, NULL );
}
__EXCEPT_ALL
{