base: log invalid address value in heap

This commit is contained in:
Christian Helmuth 2024-05-28 17:25:08 +02:00 committed by Norman Feske
parent a5c7b20196
commit 996b2fe79f

View File

@ -291,7 +291,7 @@ void Heap::free(void *addr, size_t)
break;
if (!ds) {
warning("heap could not free memory block: invalid address");
warning("heap could not free memory block: invalid address ", addr);
return;
}