How to find the cause of a malloc "double free" error? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T13:33:09Z http://stackoverflow.com/feeds/question/971249 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/971249/how-to-find-the-cause-of-a-malloc-double-free-error 4 How to find the cause of a malloc "double free" error? gonso 2009-06-09T16:49:50Z 2009-08-05T10:51:57Z <p>Hello</p> <p>I'm programming an application in Objective-C and I'm getting this error:</p> <pre><code>MyApp(2121,0xb0185000) malloc: *** error for object 0x1068310: double free *** set a breakpoint in malloc_error_break to debug </code></pre> <p>It is happening when I release an NSAutoreleasePool and I can't figure out what object I'm releasing twice.</p> <p>How do I set his breakpoint?</p> <p>Is there a way to know what is this "object 0x1068310"?</p> <p>thanks in advance</p> <p>Gonso</p> http://stackoverflow.com/questions/971249/how-to-find-the-cause-of-a-malloc-double-free-error/971589#971589 0 Answer by Benny Wong for How to find the cause of a malloc "double free" error? Benny Wong 2009-06-09T18:00:37Z 2009-06-09T18:31:23Z <p>In Xcode, click left of the line number to set a breakpoint. Then you can launch it by doing a "Build and Debug".</p> <p>It is recommended to not have object that you create be <code>autorelease</code> since memory is a commodity on the iPhone. Apple recommends explicitly calling <code>release</code>.</p> http://stackoverflow.com/questions/971249/how-to-find-the-cause-of-a-malloc-double-free-error/971616#971616 3 Answer by Frank Krueger for How to find the cause of a malloc "double free" error? Frank Krueger 2009-06-09T18:06:33Z 2009-06-09T18:06:33Z <p>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.</p> <p>The easiest way to set the breakpoint is to:</p> <ol> <li>Goto Run -> Show -> Breakpoints (Alt-Command-B)</li> <li>Scroll to the bottom of the list and add the symbol <code>malloc_error_break</code></li> </ol> http://stackoverflow.com/questions/971249/how-to-find-the-cause-of-a-malloc-double-free-error/979184#979184 8 Answer by Quinn Taylor for How to find the cause of a malloc "double free" error? Quinn Taylor 2009-06-11T03:33:58Z 2009-07-24T22:14:01Z <p>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.</p> <p>I've found that the best way to track down the extra release is to use the <strong>NSZombieEnabled</strong> environment variable for the affected executable in Xcode. For a quick rundown of how to use it, check out <a href="http://www.cocoadev.com/index.pl?NSZombieEnabled" rel="nofollow">this CocoaDev wiki page</a>. (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 <a href="http://developer.apple.com/technotes/tn2004/tn2124.html#SECFOUNDATION" rel="nofollow">this Technical Note</a> on developer.apple.com — link jumps to the section on Cocoa's Foundation framework).</p> <p><strong>Edit:</strong> 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 <strong>Run &rarr; Start With Performance Tool &rarr; Object Allocations</strong> 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.) <strong>Note:</strong> Snow Leopard adds a Zombies tool to Instruments, accessible from the Run menu as well. Might be worth the $29 alone! ;-)</p> <p>There is also a <a href="http://stackoverflow.com/questions/535060/how-to-add-nsdebug-h-and-use-nszombie-in-iphone-sdk">related SO question here</a>.</p> http://stackoverflow.com/questions/971249/how-to-find-the-cause-of-a-malloc-double-free-error/979244#979244 1 Answer by Adam Rosenfield for How to find the cause of a malloc "double free" error? Adam Rosenfield 2009-06-11T03:51:59Z 2009-06-11T03:51:59Z <p>Open up the debugger console by pressing Cmd+Shift+R. There, type</p> <pre><code>break malloc_error_break </code></pre> <p>to set a breakpoint at the beginning of the <code>malloc_error_break</code> function.</p> <p>If you want to find out what object is located at address 0x1068310, you can type the following into the debugger console:</p> <pre><code>print-object 0x1068310 </code></pre> <p>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.</p> http://stackoverflow.com/questions/971249/how-to-find-the-cause-of-a-malloc-double-free-error/1059740#1059740 0 Answer by Jared Oberhaus for How to find the cause of a malloc "double free" error? Jared Oberhaus 2009-06-29T18:29:28Z 2009-06-30T01:07:19Z <p>To find these kinds of memory and pointer problems in general, you want to run your code against a runtime memory error checker like <a href="http://valgrind.org/" rel="nofollow">Valgrind</a>. This should be able to point out lots of things your code is doing wrong, beyond those that cause it to crash.</p> <p>Valgrind <a href="http://www.sealiesoftware.com/valgrind/" rel="nofollow">can work on OSX</a> (though it says it's "unsupported and incomplete and buggy"), and with a little hacking someone got it to work on <a href="http://landonf.bikemonkey.org/code/iphone/iPhone%5FSimulator%5FValgrind.20081224.html" rel="nofollow">iPhone SDK executables</a>.</p> <p>Even better you can try Instruments, which is part of XCode. There's a tutorial for running it <a href="http://www.cimgf.com/2008/04/02/cocoa-tutorial-fixing-memory-leaks-with-instruments/" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/971249/how-to-find-the-cause-of-a-malloc-double-free-error/1232500#1232500 0 Answer by Martijn Thé for How to find the cause of a malloc "double free" error? Martijn Thé 2009-08-05T10:51:57Z 2009-08-05T10:51:57Z <p>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.</p> <p><img src="http://www.martijnthe.nl/wp-content/uploads/2009/08/Afbeelding-1.png" alt="alt text" /></p>