vote up 4 vote down star
4

Hello

I'm programming an application in Objective-C and I'm getting this error:

MyApp(2121,0xb0185000) malloc: *** error for object 0x1068310: double free
*** set a breakpoint in malloc_error_break to debug

It is happening when I release an NSAutoreleasePool and I can't figure out what object I'm releasing twice.

How do I set his breakpoint?

Is there a way to know what is this "object 0x1068310"?

thanks in advance

Gonso

flag

67% accept rate
1  
you might want to tag this post with iPhone as well to get some more people – Benny Wong Jun 9 at 18:00
1  
Removed "iphone" tag in favor of other more pertinent tags. – Quinn Taylor Jun 29 at 18:22
2  
I can't imagine why this iPhone question would be missing the iPhone tag. There must be more people following "iPhone" than some of these other tags like "autorelease." If you want to find "autorelease," you search for it, you don't follow the tag. So I put "iPhone" back in. – Nosredna Jun 30 at 1:24
2  
The reason I removed the "iphone" tag is because nothing about the question is specific to iPhone. The only link at all is that it occurs in an iPhone app, but the exact same error can occur in any C or Objective-C application. I don't expect that people following iPhone would be casually interested in this — rather, it would be people who search for things like "double free" or "malloc_error_break", and if they toss in "iPhone", it will still come up. Let's not bicker about tags, but consider that perhaps the people who answer may know where the question best belongs. – Quinn Taylor Jul 3 at 0:59
This question is at least Cocoa-specific. If the iPhone tag offends, how about a cocoa tag? The obvious intent applies to Objective-C on Cocoa in XCode. Not Objective-C on Windows, or Linux, or outside the context of XCode. – runako Nov 17 at 6:45

6 Answers

vote up 3 vote down check

You'll find out what the object is when you break in the debugger. Just look up the call stack and you will find where you free it. That will tell you which object it is.

The easiest way to set the breakpoint is to:

  1. Goto Run -> Show -> Breakpoints (Alt-Command-B)
  2. Scroll to the bottom of the list and add the symbol malloc_error_break
link|flag
I tried that, but I get: unable to dissamble malloc_error_break.... what does it mean? – gonso Jun 10 at 5:49
1  
No help for autorelease double free. He needs Zombies – Roger Nolan Jun 11 at 6:31
6  
@gonso — Just curious, if this didn't work for you, why did you you accept it as the answer? – Quinn Taylor Jun 18 at 4:13
vote up 8 vote down

When an object is "double-freed", the most common cause is that you're (unnecessarily) releasing an autoreleased object, and it is later autoreleased when the containing autorelease pool is emptied.

I've found that the best way to track down the extra release is to use the NSZombieEnabled environment variable for the affected executable in Xcode. For a quick rundown of how to use it, check out this CocoaDev wiki page. (In addition to this page, Apple has documented some incredibly obscure yet useful tips for debugging code in Xcode, some of which have saved my bacon more than a few times. I suggest checking out this Technical Note on developer.apple.com — link jumps to the section on Cocoa's Foundation framework).

Edit: You can often track the offending object down within the Xcode debugger, but it's often much easier if you use Instruments to assist you. From Xcode, choose Run → Start With Performance Tool → Object Allocations and you should be able to trace the offending object back to where it was created. (This will work best if you're enabled zombies as discussed above.) Note: Snow Leopard adds a Zombies tool to Instruments, accessible from the Run menu as well. Might be worth the $29 alone! ;-)

There is also a related SO question here.

link|flag
vote up 1 vote down

Open up the debugger console by pressing Cmd+Shift+R. There, type

break malloc_error_break

to set a breakpoint at the beginning of the malloc_error_break function.

If you want to find out what object is located at address 0x1068310, you can type the following into the debugger console:

print-object 0x1068310

Of course, you have to do this while the object is still alive -- if the object has already been freed by the time you do this, then this will not work.

link|flag
This is autorelease, he needs Zombies. – Roger Nolan Jun 11 at 6:32
1  
Finally what I did was invoking the "suspicious" method outside of AutoreleasePoll. Funny thought I still got the warning, but no break point was hit. I just commented out blocks until I found the line. I was autoreleasing a string that was created with stringWithFormat (no alloc or copy). Thank you all for your tips! Gonso – gonso Jun 12 at 0:38
For this particular type of bug, breaking on malloc_error_break has never helped find the problem — it has always required enabling zombies. – Quinn Taylor Jul 3 at 15:23
vote up 0 vote down

In Xcode, click left of the line number to set a breakpoint. Then you can launch it by doing a "Build and Debug".

It is recommended to not have object that you create be autorelease since memory is a commodity on the iPhone. Apple recommends explicitly calling release.

link|flag
vote up 0 vote down

To find these kinds of memory and pointer problems in general, you want to run your code against a runtime memory error checker like Valgrind. This should be able to point out lots of things your code is doing wrong, beyond those that cause it to crash.

Valgrind can work on OSX (though it says it's "unsupported and incomplete and buggy"), and with a little hacking someone got it to work on iPhone SDK executables.

Even better you can try Instruments, which is part of XCode. There's a tutorial for running it here.

link|flag
instruments is the way to go; use the object alloc instrument and turn on zombies. (or just use the Zombies template). Valgrind is solution of last resort. It is terribly slow and often simply won't work. – bbum Jun 30 at 2:19
I agree, much better choice. – Jared Oberhaus Jun 30 at 3:50
vote up 0 vote down

This is what the malloc_error_break breakpoint looks like in the Breakpoints window in Xcode. Need to check the boxes to make it work.

alt text

link|flag

Your Answer

Get an OpenID
or

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