I am writing a program using MAC OSX 10.6.6 and xcode 3.2
I have this Error:
Program received signal: “EXC_BAD_ACCESS”. sharedlibrary
apply-load-rules all
but my code runs and works well, should i be worry about this message?
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.
Indeed you should be. This is an indication that there is a memory issue, most likely due to referencing an object that has been released, more often than not, by an autoreleased object.
Here’s a similar post that I think will prove helpful.