In unmanaged C/C++ code, what are the best practices to detect memory leaks? and And coding guidelines to avoid? (as As if its it's that simple ;)
we
We have used a bit of a silly way in the past. Having : having a counter increments increment for every memory allocation call and decrement while freeing. At the end of the program, the counter value should be zero.
I know this is not a great way and there are a few catchesare there. (For instance, if you are freeing memory which was allocated by the a platform api API call, your allocation count is will not exactly reflecting the correct number of matching freematch your freeing count. OfcourseOf course, then we incremented the counter when calling such API calls which allocates memorythat allocated memory.)
I am expecting your experiences, suggestions and maybe some references to tools which simplify this.
Cheers
