Reputation: 4755
I seem to be getting a sigabrt crash every once in a while (not every time).
malloc: *** error for object 0x7ff8884644c0: incorrect checksum for freed object - object was probably modified after being freed.
*** set a breakpoint in malloc_error_break to debug.
Now, I know that means I'm probably attempting to access, or change an object after calling free() on it, but I was wondering how to find out what object it's referring to, using the memory address listed above. Thanks!
This is what I see before it crashes (It crashes on NSLog):
Upvotes: 1
Views: 1125