NewB Memory Leak ?
-
I am fairly new (again) to VC++, I have seen alot of posts on memory leaks here, what do you use to check memory leaks? Is it a program that comes with VC? and does it tell you what lines the leaks accur in? Thanks,... Josh
-
I am fairly new (again) to VC++, I have seen alot of posts on memory leaks here, what do you use to check memory leaks? Is it a program that comes with VC? and does it tell you what lines the leaks accur in? Thanks,... Josh
If you run the application in debug mode,and then dismiss it, you will get fair bit of information about the memory leak in the debug window at the bottom, if you want detail analyis of memory leaks, rational purify is a good tool for that. The World is getting smaller and so are the people.
-
I am fairly new (again) to VC++, I have seen alot of posts on memory leaks here, what do you use to check memory leaks? Is it a program that comes with VC? and does it tell you what lines the leaks accur in? Thanks,... Josh
This is an excellent tool,very easy to be built-in and on top of all free of charge. You get an Exception trace tool additionally. http://www.codeproject.com/tools/leakfinder.asp[^] Peter Molnar