From 5fd8e8f1524269a6dad8a687d0108b1ba6b33c7e Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 20 Mar 2023 20:30:13 +0200 Subject: [PATCH] Specify the invalid address --- Core/Memory/HeapAllocators/Xalloc/XallocV1.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/Memory/HeapAllocators/Xalloc/XallocV1.cpp b/Core/Memory/HeapAllocators/Xalloc/XallocV1.cpp index 4671428..b8602d2 100644 --- a/Core/Memory/HeapAllocators/Xalloc/XallocV1.cpp +++ b/Core/Memory/HeapAllocators/Xalloc/XallocV1.cpp @@ -212,7 +212,7 @@ namespace Xalloc CurrentBlock = CurrentBlock->Next; } - Xalloc_err("Invalid address."); + Xalloc_err("Invalid address %#lx.", Address); Xalloc_unlock; }