tags:

views:

118

answers:

1

I see this sometimes in xcode console.

+1  A: 

There is usually an accompanying error message when you get that output; it is a function you can set a breakpoint on to debug a malloc()/free() bug in your program. This thread on an Apple development list has some more information.

Carl Norum