In native code, its sometimes useful to set a breakpoint condition so that a breakpoint will only stop for a particular instance of an object. To do this, I simply use the address of the object: this == (CMyObject*)0x10fc10 In managed code, the garbage
Read More...
I have been spending some time looking at native memory leaks recently, and I decided to blog about some of the techniques which worked well for me. First, find out what objects are leaking. If your code doesn’t already have some sort of leak detection
Read More...