what is the effect of this error on my program? “EXC_BAD_ACCESS”. sharedlibrary

StackOverflow https://stackoverflow.com/questions/8836700

  •  15-04-2021
  •  | 
  •  

Pregunta

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?

¿Fue útil?

Solución

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.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top