Looking for Memory Leak Advice
| Tue, 2007-10-16 23:39 | |
|
|
Apart from buying BoundsChecker or any of the other tools to track down memory leaks. Does anyone have any advice or tips from your years of programming experience to offer on how to track down the causes of memory leaks? I find that the big dump that happens at the end of a program does not typically lend any useful clues as to where or what was allocated that was not freed. I find that I have to back track and comment out sections of code until through the process of elimination and trial-and-error, I am able to narrow down where the problem is. And since this is usually at the bottom of the To-Do list, the memory leaks are not plugged. |






Forum posts: 1134
For symbian development, there is an excellent tool called "HookLogger".
It will log all memory allocations and deallocations and save the call stack for each allocation, so you easily can find what was responsible for the leak.
The same approach ofcourse works for any platform, though I don't know of any tool names for other platforms.