0

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?

user1095058
  • 75
  • 1
  • 10

1 Answers1

1

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.

Community
  • 1
  • 1
Jeremy
  • 8,902
  • 2
  • 36
  • 44