Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
2
votes
2answers
149 views

malloc_history cannot examine process xxxxxx because the process does not exist in iOS

I added the below environment variables to my Project and set their values to YES. NSDebugEnabled NSZombieEnabled MallocStackLogging MallocStackLoggingNoCompact I followed the Procedures in ...
0
votes
0answers
9 views

View the malloc history in Xcode 4.2

I'm trying to find a deallocated instance error in Xcode 4.2. I've Zombie Objects, Guard Malloc and Malloc Stack options enabled. In the console I use Shell malloc_history pid adress and shows ...
0
votes
0answers
48 views

Unknown coding error in cellForRowAtIndexPath is causing an app crash

I have an app that retrieves a list of tasks from a service call and populates a UITableView with UITableViewCells to display the data. The first time I launch the app fresh by removing it from the ...
0
votes
1answer
672 views

Deallocated instance | “Malloc_history cannot examine process XYZ because the process does not exist.”

I have memory problem (yes ;) I am new to iOS) with the following method in a custom UIView: Header file .... @property (nonatomic, retain) NSString * pressureTextLabel; .... Implementation ...
0
votes
2answers
972 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 ...
0
votes
1answer
213 views

mtrace + MALLOC_TRACE - disable buffering

how can I disable buffering on mtrace and output file with name from MALLOC_TRACE ?? the mtrace is started as: $ cat libmtrace1.c #include <mcheck.h> static __attribute__((constructor)) void ...