Is there any tool or utility (like "Purify" for normal C++ applications) to find the memory leaks for an application written in Symbian 6.x (C++) ported on Nokia 9210?
If not then how to find the memory leaks at specified places?
I find UHEAP Macro's to be pretty insufficient as it is unable to detect "specific" memory leaks.
Unfortunately not. Best practice is to catch them as you go, by *always* closing your application each time you test it. If you've missed one, and the macro's aren't of any help, then I'm afraid it's a case of prunning your app down, till the error disappears in order to diagnose the problem.