how do i read a Heap Dump? (look in for example)
-
How do I read this? does (118) mean the line? cause i've looked and it just wasnt what it would seem to be. Data: < GET > 01 00 00 00 03 00 00 00 03 00 00 00 47 45 54 00 strcore.cpp(118) : {3409} normal block at 0x0760B628, 28 bytes long. Data: < /gue> 01 00 00 00 0F 00 00 00 0F 00 00 00 2F 67 75 65 strcore.cpp(118) : {3408} normal block at 0x0760B5C0, 30 bytes long. Any help get a big Thank You! ~Timothy T. Rymer www.digipen.edu tim.xpertz.com
-
How do I read this? does (118) mean the line? cause i've looked and it just wasnt what it would seem to be. Data: < GET > 01 00 00 00 03 00 00 00 03 00 00 00 47 45 54 00 strcore.cpp(118) : {3409} normal block at 0x0760B628, 28 bytes long. Data: < /gue> 01 00 00 00 0F 00 00 00 0F 00 00 00 2F 67 75 65 strcore.cpp(118) : {3408} normal block at 0x0760B5C0, 30 bytes long. Any help get a big Thank You! ~Timothy T. Rymer www.digipen.edu tim.xpertz.com
Is this a dump of memory leaks? If so, read on... 118 is the line in strcore.cpp where the memory-leaking block was allocated. The best way to track down these bugs (without BoundsChecker or similar) is using _crtBreakAlloc in the VC++ debugger. Search MSDN for "HOWTO: Use _crtBreakAlloc to Debug a Memory Allocation" for more info, but basically you start the debugger, set _crtBreakAlloc to equal the second number (3409 or 3408) in the lines above, and then run. When the memory that is leaking is allocated, the debugger will break and show you where. Good luck. ------------------------ Derek Waters derek@lj-oz.com
-
Is this a dump of memory leaks? If so, read on... 118 is the line in strcore.cpp where the memory-leaking block was allocated. The best way to track down these bugs (without BoundsChecker or similar) is using _crtBreakAlloc in the VC++ debugger. Search MSDN for "HOWTO: Use _crtBreakAlloc to Debug a Memory Allocation" for more info, but basically you start the debugger, set _crtBreakAlloc to equal the second number (3409 or 3408) in the lines above, and then run. When the memory that is leaking is allocated, the debugger will break and show you where. Good luck. ------------------------ Derek Waters derek@lj-oz.com
sweet thanks i'll try it - it looks like that'll work ~Timothy T. Rymer www.digipen.edu tim.xpertz.com