[compiler-rt] [win/asan] Improve SharedReAlloc with HEAP_REALLOC_IN_PLACE_ONLY. (PR #132558)
Thurston Dang via llvm-commits
llvm-commits at lists.llvm.org
Sat Jul 26 13:07:01 PDT 2025
================
@@ -322,6 +322,22 @@ void *SharedReAlloc(ReAllocFunction reallocFunc, SizeFunction heapSizeFunc,
}
}
+ if (dwFlags & HEAP_REALLOC_IN_PLACE_ONLY) {
----------------
thurstond wrote:
What's the reason for doing the check here, instead of on line 367 (which would become redundant)?
https://github.com/llvm/llvm-project/pull/132558
More information about the llvm-commits
mailing list