|
Post Made Community Wiki by Community♦
|
||||
|
|
||||
|
4 | fixed grammar | ||
|
If you are using Visual Studio, Microsoft provides some useful functions for detecting and debugging memory leaks. I would start with this set of articles: http://msdn.microsoft.com/en-us/library/x98tx3cf(VS.71).aspx Here is the quick summary of those articles. First, include these headers:
Then you need to call this when your program exists:
Alternatively, if your program does not exit in the same place every time, you can call this at the start of your program:
Now when the program exits all the allocations that were not freed will be printed in the Output Window along with the file they were allocated in and the allocation occurrence. This strategy works for most programs. However, it becomes difficult or impossible in certain cases. Using third party libraries that do some initialization on startup may cause other objects to appear in the memory dump and can make tracking down your leaks difficult. Also, if any of your classes have members with the same name as any of the memory allocation routines( such as malloc ), the CRT debug macros will cause problems. There are other techniques explained in the MSDN link referenced above that could be used as well. |
||||
|
3 | deleted 24 characters in body | ||
|
If you are using Visual Studio, Microsoft provides some useful functions , as mentioned by Skizz, for detecting and debugging memory leaks. I would start with this set of articles: http://msdn.microsoft.com/en-us/library/x98tx3cf(VS.71).aspx The summary Here is that you the quick summary of those articles. First, include these headers:
Then you need to call this when your program exists:
Alternatively, if your program does not exit in the same place you can call this at the start of your program:
Now when the program exits all the allocations that were not freed will be printed in the Output Window along with the file they were allocated in and the allocation occurrence. This strategy works for most programs. However, it becomes difficult or impossible in certain cases. Using third party libraries that do some initialization on startup may cause other objects to appear in the memory dump and can make tracking down your leaks difficult. Also, if any of your classes have members with the same name as any of the memory allocation routines( such as malloc ), the CRT debug macros will cause problems. There are other techniques explained in the MSDN link referenced above that could be used as well. |
||||
|
2 | added 6 characters in body | ||
|
1 |
|
||
