Month: July 2006

C/C++ memory manager magic values

The values the debug version of CRT memory manager fills memory with. dbgheap.c: static unsigned char _bNoMansLandFill = 0xFD;   /* fill no-man’s land with this */ static unsigned char _bDeadLandFill   = 0xDD;   /* fill free objects with this */ static unsigned char _bCleanLandFill  = 0xCD;   /* fill new objects with this */ static unsigned char…

Read the full article