I create a single mutable string object. Now I have released the object many times, even though I allocated them only once. According to basic memory management rules, this is wrong. But then it should crash, but this never happens. I was expecting some EXC_BAD_ACCESS error.
I received the error :
malloc: *** error for object 0x6d5ac60: double free
*** set a breakpoint in malloc_error_break to debug
Why the app does not crash?
NSMutableString *firstOwner = [[NSMutableString alloc] init];
[firstOwner release];
[firstOwner release];
[firstOwner release];
NSMutableString *temporaryObject = firstOwner;
[temporaryObject release];
[temporaryObject release];