I'm using an NSTreecontroller in conjunction with an NSOutlineView in my program, and my program is constantly spitting out: malloc: *** error for object 0x1d70d0: double free. These messages go away when I remove the bindings in IB. Any idea why this is happening?

Note: This is behavior is not crashing my program, but I suspect that it might be the root of a crasher.

link|improve this question

73% accept rate
feedback

1 Answer

up vote 3 down vote accepted

NSTreeController had some broken behavior in Tiger. I don't know whether they've fixed it in Leopard.

As Rentzsch suggests, use NSZombieEnabled to trap the second free attempt (assuming it's a dealloc). See TN2124 for instructions.

link|improve this answer
Thanks. Tuns out my NSTableColumn subclass was misbehaving. And as I suspected, fixing this problem fixed my crasher too! – Rich Catalano Feb 16 '09 at 21:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.