[compiler-rt] [ASan] Honor `allocator_may_return_null` when set through user-function and fix large alloc edge case (PR #117929)
Vitaly Buka via llvm-commits
llvm-commits at lists.llvm.org
Sun Dec 8 19:58:15 PST 2024
================
@@ -85,8 +85,12 @@ static void NORETURN ReportInternalAllocatorOutOfMemory(uptr requested_size) {
void *InternalAlloc(uptr size, InternalAllocatorCache *cache, uptr alignment) {
void *p = RawInternalAlloc(size, cache, alignment);
- if (UNLIKELY(!p))
+ if (UNLIKELY(!p)) {
+ if (AllocatorMayReturnNull()) {
----------------
vitalybuka wrote:
This is internal allocator, and I don't think internal users expect NULL
https://github.com/llvm/llvm-project/pull/117929
More information about the llvm-commits
mailing list