FREED message is crashing my program

2009-08-19 Thread Korei Klein
When I compile and run my project, it crashes because of an illegal memory access error. Just before the error occurs, the program logs the following line: objc[32305]: FREED(id): message set sent to freed object=0x53ffb850 . The object at address 0x53ffb850 is the object that has the

Re: FREED message is crashing my program

2009-08-19 Thread Bill Bumgarner
On Aug 19, 2009, at 8:23 AM, Korei Klein wrote: The object at address 0x53ffb850 is the object that has the illegal memory access error. What does this FREED line mean, and what does it have to do with memory access problems? You overreleased something and it is causing the crash. Turn

Re: FREED message is crashing my program

2009-08-19 Thread Kyle Sluder
On Wed, Aug 19, 2009 at 8:48 AM, Bill Bumgarnerb...@mac.com wrote: Turn on NSZombie mode. More clarification, since from your confusion it sounds like you might not know what this means: NSZombie mode means that whenever an object's retain count drops to zero, instead of freeing the memory held