diff options
Diffstat (limited to 'src/core/function/SecureMemoryAllocator.cpp')
-rw-r--r-- | src/core/function/SecureMemoryAllocator.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/core/function/SecureMemoryAllocator.cpp b/src/core/function/SecureMemoryAllocator.cpp index b9201942..2c584753 100644 --- a/src/core/function/SecureMemoryAllocator.cpp +++ b/src/core/function/SecureMemoryAllocator.cpp @@ -48,9 +48,6 @@ auto SecureMemoryAllocator::Reallocate(void* ptr, std::size_t size) -> void* { return addr; } -void SecureMemoryAllocator::Deallocate(void* p) { - SPDLOG_TRACE("secure memory allocator trys to free memory, address: {}", - static_cast<void*>(p)); - mi_free(p); -} +void SecureMemoryAllocator::Deallocate(void* p) { mi_free(p); } + } // namespace GpgFrontend
\ No newline at end of file |