Com.apple.root.default-overcommit-priority - [CFString release]: message sent to the freed instance

In my application, Thread 13 is marked as:

com.apple.root.default-overcommit-priority

Right below I see a:

0 __forwarding__

and below I have:

6 _pthread_wqthread

What causes:

-[CFString release]: message sent to deallocated instance

I understand that the message is being sent to the freed instance, my problem is that I cannot find where this is happening. I have zombies, exception logs, etc.

I also created a framework that is imported (with full debugging symbols), and I feel that this is where the error occurs.

Since the structure is not directly executable and needs to be imported, how can I debug / enter into it, etc. to try to find the exact line that causes this problem?

Next, How do I get additional crash information besides build / stack / registration information?

+4
1

lldb . bmessage [CFString release], , .

https://github.com/facebook/chisel

+1

All Articles