ntdll: Use call_dll_entry_point to execute TLS callbacks.
This commit is contained in:
parent
b7f77bb1fd
commit
636dc013cd
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue