Original Post
I am having a hard time tracking down some memory leaks in my program.. I am using the CRT visual c++ debugger, which is great for finding memory leaks that have consistant allocation numbers. But these memory leaks have different allocation numbers each time the program is run, so it's quite difficult to find what allocation is causing the leak.
Is there a way to log all memory allocations so I can go back later and figure out which one specifically happened for the particular time I ran the program? Or some better method of solving the memory leak issue?
Thanks in advance...
Is there a way to log all memory allocations so I can go back later and figure out which one specifically happened for the particular time I ran the program? Or some better method of solving the memory leak issue?
Thanks in advance...