I took over a big project written in c++ using visual studio 2008. The application keeps crashing and when I look at the task manager in windows, it shows the application taken almost all the memory. What application do people recommend to find memory leaks in c++ on windows platform?
I found some posts talking about using the visual leak in 2008 but not very effective.
Any ideas trying to find a needle in a haystack?
Thanks
-Dimitry
Using UMDH.exe, capture successive snapshots and then use umdh again to compare them. This should give you the callstack of the owner(s) of your memory increase between the two snapshots.