diff options
author | Euclid Linden <euclid@lindenlab.com> | 2021-10-04 16:55:51 +0000 |
---|---|---|
committer | Euclid Linden <euclid@lindenlab.com> | 2021-10-04 16:55:51 +0000 |
commit | 66e597f119eae7c5b9c1d0c40cf9c494a75db5dd (patch) | |
tree | ac109ab84a93e7d5190a25ad85d61c64c858fb21 /indra | |
parent | 2148e4c731e1c0926c32fedb3e7047c96cd9eebf (diff) | |
parent | 05e01d58b684b81ca73ad3a68d882344cb93541e (diff) |
Merged in DRTVWR-541 (pull request #717)
Push autobuild updates made in DRTVWR-541 into -546
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llcommon/llcommon.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/indra/llcommon/llcommon.cpp b/indra/llcommon/llcommon.cpp index da61e7539a..5d4a623bf6 100644 --- a/indra/llcommon/llcommon.cpp +++ b/indra/llcommon/llcommon.cpp @@ -34,14 +34,13 @@ #include "llcleanup.h" #if (TRACY_ENABLE) -// Override new/delet for tracy memory profiling +// Override new/delete for tracy memory profiling void *operator new(size_t size) { auto ptr = (malloc) (size); if (!ptr) { throw std::bad_alloc(); - return nullptr; } TracyAlloc(ptr, size); return ptr; @@ -62,7 +61,7 @@ void operator delete(void *ptr) noexcept void *tracy_aligned_malloc(size_t size, size_t alignment) { - auto ptr = (_aligned_malloc) (size, alignment); + auto ptr = ll_aligned_malloc_fallback(size, alignment); if (ptr) TracyAlloc(ptr, size); return ptr; } @@ -70,7 +69,7 @@ void *tracy_aligned_malloc(size_t size, size_t alignment) void tracy_aligned_free(void *memblock) { TracyFree(memblock); - (_aligned_free)(memblock); + ll_aligned_free_fallback(memblock); } #endif |