[compiler-rt] [asan][win] Fix CreateThread leak (PR #126738)
Vitaly Buka via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 26 21:19:49 PST 2025
================
@@ -166,6 +165,14 @@ INTERCEPTOR_WINAPI(HANDLE, CreateThread, LPSECURITY_ATTRIBUTES security,
thr_flags, tid);
}
+INTERCEPTOR_WINAPI(void, ExitThread, DWORD dwExitCode) {
+ AsanThread *t = (AsanThread *)__asan::GetCurrentThread();
+ if (t) {
----------------
vitalybuka wrote:
this code don't use {} in cases like these
https://github.com/llvm/llvm-project/pull/126738
More information about the llvm-commits
mailing list