is there anyway to add a breakpoint for the following warning:
* __NSAutoreleaseFreedObject(): release of previously deallocated object (0x1003e1720) ignored
I’ve tried adding an exception breakpoint on objective c exceptions without success.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The
__NSAutoreleaseFreedObjectsymbol is for the_NSAutoreleaseFreedObjectfunction (single underscore). The underscore means it’s private (certainly a static function).So you won’t be able to place a breakpoint, as the function is not exported.
You may try to define’s the function’s prototype in some of your header file:
The, you should be able to set a breakpoint from GDB: