rtischer8277
New member
- Sep 18, 2019
- 2
I am learning WinDbg Preview. My test program, LeakDbg, has this statement in it:
The program is MFC which dumps out this information:
I have created a Trace and can Time Travel forwards and backwards. Which command(s) would I use to discover where this leak is?
Code:
wchar* str = new wchar[100];
The program is MFC which dumps out this information:
Detected memory leaks!
Dumping objects ->
C:\Users\Amber8277\Documents\Visual Studio 2019\Projects\LeakDbg\MainFrm.cpp(47) : {274689} normal block at 0x00000280639412C0, 200 bytes long.
Data: < > CD CD CD CD CD CD CD CD CD CD CD CD CD CD CD CD
Object dump complete.
I have created a Trace and can Time Travel forwards and backwards. Which command(s) would I use to discover where this leak is?