We have an application with hundreds of possible user actions, and think about how enhancing memory leak testing.
Currently, here\'s the way it happens: When manuall
first line of defense:
second line of defense:
If you work with unmanaged language (like C/C++) you can efficiently discover most of the memory leaks by hijacking memory management functions. For example you can track all memory allocations/deallocations.