While debugging my App with Instruments I found a couple of memory leaks. I haven't done this since MRC, so forgive me if I'm missed anything obvious.
Going to the Cycles and Roots Section on the 'Leaks' instrument revealed many 'Root Leaks'.
The call tree is empty. All the leaks say "Malloc X Bytes [no ivar] Malloc X Bytes
" and nothing more. (There's a graph on the right showing this too)
How would I go about finding the cause for these memory leaks? I haven't written all the code so It's difficult for me to find the exact code that causes this.
Since they come up under 'Cycles and Roots', does this have anything to do with retain cycles? Could they be a consequence of not nulling out blocks correctly?
I'm Using ARC, Xcode 4.6.3, Instruments 4.6 and the iOS 6.1 Simulator