In my app, Thread 13 is marked as:
com.apple.root.default-overcommit-priority
Right below I see a:
0 __forwarding__
and below I have a:
6 _pthread_wqthread
Which causes:
-[CFString release]: message sent to deallocated instance
I understand that a message is being sent to a deallocated instance, my problem is I cannot find where that happens. I have zombies enabled, exception logging, etc.
I have also created a framework which is imported (with full debug symbols), and I have a feeling that this is where the error originates from.
Since the framework is not executable directly, and has to be imported, how can I debug/step into it, etc, in order to try and find the exact line that triggers this problem?
Further more, How can I get more info about the crash, other than the assembly/stack/register info?