Skip to content

Commit 757b93b

Browse files
committed
[ASan] Fix broken Windows build due to 596d534.
In that change I forgot to update the call to `AsanThread::ThreadStart()` in `asan_win.cpp`.
1 parent 1eb8c5c commit 757b93b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler-rt/lib/asan/asan_win.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ INTERCEPTOR(int, _except_handler4, void *a, void *b, void *c, void *d) {
134134
static thread_return_t THREAD_CALLING_CONV asan_thread_start(void *arg) {
135135
AsanThread *t = (AsanThread *)arg;
136136
SetCurrentThread(t);
137-
return t->ThreadStart(GetTid(), /* signal_thread_is_registered */ nullptr);
137+
return t->ThreadStart(GetTid());
138138
}
139139

140140
INTERCEPTOR_WINAPI(HANDLE, CreateThread, LPSECURITY_ATTRIBUTES security,

0 commit comments

Comments
 (0)