As everyone knows, the Visual C++ runtime marks uninitialized or just freed memory blocks with special non-zero markers. Is there any way to disable this behavior entirely w
You could create a memory manager also. Then you could override new and delete to pull from/put back a pre allocated chuck of memory.