Tagged Questions

18
votes
2answers
2k views

How to use MallocStackLogging on the device?

I've a memory issue in an iPhone app that I'd like to debug with MallocStackLogging. The error involves the gyroscope so I have to debug on the device not the simulator. I've set the ...
6
votes
5answers
14k views

iPhone - debugging “pointer being freed was not allocated” errors

When over freeing a pointer you may see an error such as "pointer being freed was not allocated" When debugging with the simulator, I add a build argument MallocStackLogging = YES - this allows me ...
3
votes
2answers
1k views

Understanding a malloc_history dump

If you have ever asked how can I debug releasing/alloc issues in objective-c, you will have came across these environment settings that can help track the problem down: NSZombieEnabled - Keeps ...
0
votes
2answers
969 views

pointer being freed was not allocated. Complex malloc history help

I've followed the guides helpfully linked here: http://stackoverflow.com/questions/295778/iphone-debugging-pointer-being-freed-was-not-allocated-errors but the malloc_history is really throwing me ...