forked from OSchip/llvm-project
[ASan] Fix broken Windows build due to 596d534ac3
.
In that change I forgot to update the call to `AsanThread::ThreadStart()` in `asan_win.cpp`.
This commit is contained in:
parent
1eb8c5cd35
commit
757b93bb7b
|
@ -134,7 +134,7 @@ INTERCEPTOR(int, _except_handler4, void *a, void *b, void *c, void *d) {
|
|||
static thread_return_t THREAD_CALLING_CONV asan_thread_start(void *arg) {
|
||||
AsanThread *t = (AsanThread *)arg;
|
||||
SetCurrentThread(t);
|
||||
return t->ThreadStart(GetTid(), /* signal_thread_is_registered */ nullptr);
|
||||
return t->ThreadStart(GetTid());
|
||||
}
|
||||
|
||||
INTERCEPTOR_WINAPI(HANDLE, CreateThread, LPSECURITY_ATTRIBUTES security,
|
||||
|
|
Loading…
Reference in New Issue