[compiler-rt] [asan][win] Fix CreateThread leak (PR #126738)

Vitaly Buka via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 20 10:09:55 PST 2025


================
@@ -166,6 +190,15 @@ INTERCEPTOR_WINAPI(HANDLE, CreateThread, LPSECURITY_ATTRIBUTES security,
                             thr_flags, tid);
 }
 
+INTERCEPTOR_WINAPI(void, ExitThread, DWORD dwExitCode) {
+  DWORD key = atomic_load(&g_native_tls_key, memory_order_relaxed);
+  AsanThread *t = (AsanThread *)TlsGetValue(key);
----------------
vitalybuka wrote:

Isn't this  the same as in SetCurrentThread ?

https://github.com/llvm/llvm-project/pull/126738


More information about the llvm-commits mailing list