Volker v. posted an article on
WinDbg by Volker von Einem
-
Dec 4, 2009, 12:54 am
I just analyzed a crash dump were I needed to investigate a dynamically allocated a array.
We have a declaration:
CString **ids;
the allocation
ids = new CString*[size];
Given a size of...