I'm working on a project using many external library on windows. I got problem with memory leak: i detected many memory leaks by overriding operator new/new[] and delete/delete[]. The problem is i know how many memory blocks are leaked, but don't know where to find them, in overrided functions, i could log size and position of allocated mem block, without stack trace.
So to deal with it, i guess i need to log stack trace too (but how?), or is there any way to find which code caused memory leaked?
Thanks a lot for any help.