What REALLY happens when you don't free after malloc? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T13:28:09Z http://stackoverflow.com/feeds/question/654754 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/654754/what-really-happens-when-you-dont-free-after-malloc 21 What REALLY happens when you don't free after malloc? Scott 2009-03-17T15:29:09Z 2009-04-22T21:16:01Z <p>This has been something that has bothered me for ages now.</p> <p>We are all taught in school (at least, I was) that you MUST free every pointer that is allocated. I'm a bit curious, though, about the real cost of not freeing memory. In some obvious cases, like when malloc is called inside a loop or part of a thread execution, it's very important to free so there are no memory leaks. But consider the following two examples:</p> <p>First, if I have code that's something like this:</p> <pre><code>int main() { char * a = (char *) malloc(1024); /* Do some arbitrary stuff with 'a' (no alloc functions) */ return 0; } </code></pre> <p>What's the real result here? My thinking is that the process dies and then the heap space is gone anyway so there's no harm in missing the call to free (however, I do recognize the importance of having it anyway for closure, maintainability, and good practice). Am I right in this thinking?</p> <p>Second, let's say I have a program that acts a bit like a shell. Users can declare variables like "aaa = 123" and those are stored in some dynamic data structure for later use. Clearly, it seems obvious that you'd use some solution that will calls some *alloc function (hashmap, linked list, something like that). For this kind of program, it doesn't make sense to ever free after calling malloc because these variables must be present at all times during the programs execution and there's no good way (that I can see) to implement this with statically allocated space. Is it bad design to have a bunch of memory that's allocated but only freed as part of the process ending? If so, what's the alternative?</p> <p>Cheers</p> http://stackoverflow.com/questions/654754/what-really-happens-when-you-dont-free-after-malloc/654763#654763 0 Answer by cdonner for What REALLY happens when you don't free after malloc? cdonner 2009-03-17T15:31:40Z 2009-03-17T15:31:40Z <p>If you don't free up allocated memory when you no longer need it, your program will eventually run out of memory.</p> http://stackoverflow.com/questions/654754/what-really-happens-when-you-dont-free-after-malloc/654765#654765 8 Answer by compie for What REALLY happens when you don't free after malloc? compie 2009-03-17T15:32:02Z 2009-04-22T21:16:01Z <p>Yes you are right, your example doesn't do any harm (at least not on most modern operating systems). All the memory allocated by your process will be recovered by the operating system once the process exits. </p> <p>Source: <a href="http://www.hpl.hp.com/personal/Hans%5FBoehm/gc/myths.ps" rel="nofollow">Allocation and GC Myths</a> (PostScript alert!)</p> <blockquote> <p>Allocation Myth 4: Non-garbage-collected programs should always deallocate all memory they allocate. </p> <p>The Truth: Omitted deallocations in frequently executed code cause growing leaks. They are rarely acceptable. but Programs that retain most allocated memory until program exit often perform better without any intervening deallocation. Malloc is much easier to implement if there is no free.</p> <p>In most cases, <strong>deallocating memory just before program exit is pointless.</strong> The OS will reclaim it anyway. Free will touch and page in the dead objects; the OS won't.</p> <p>Consequence: Be careful with "leak detectors" that count allocations. Some "leaks" are good!</p> </blockquote> <p>That said, you should really try to avoid all memory leaks! </p> <p>Second question: your design is ok. If you need to store something until your application exits then its ok to do this with dynamic memory allocation. If you don't know the required size upfront, you can't use statically allocated memory.</p> http://stackoverflow.com/questions/654754/what-really-happens-when-you-dont-free-after-malloc/654766#654766 29 Answer by Paul Tomblin for What REALLY happens when you don't free after malloc? Paul Tomblin 2009-03-17T15:32:32Z 2009-03-24T15:41:49Z <p>Just about every modern operating system will recover all the allocated memory space after a program exits. The only exception I can think of might be something like Palm OS where the program's static storage and runtime memory are pretty much the same thing, so not freeing might cause the program to take up more storage. (I'm only speculating here.)</p> <p>So generally, there's no harm in it, except the runtime cost of having more storage than you need. Certainly in the example you give, you want to keep the memory for a variable that might be used until it's cleared.</p> <p>However, it's considered good style to free memory as soon as you don't need it any more, and to free anything you still have around on program exit. It's more of an exercise in knowing what memory you're using, and thinking about whether you still need it. If you don't keep track, you might have memory leaks.</p> <p>On the other hand, the similar admonition to close your files on exit has a much more concrete result - if you don't, the data you wrote to them might not get flushed, or if they're a temp file, they might not get deleted when you're done. Also, database handles should have their transactions committed and then closed when you're done with them. Similarly, if you're using an object oriented language like C++ or Objective C, not freeing an object when you're done with it will mean the destructor will never get called, and any resources the class is responsible might not get cleaned up.</p> http://stackoverflow.com/questions/654754/what-really-happens-when-you-dont-free-after-malloc/654769#654769 1 Answer by Kyle Cronin for What REALLY happens when you don't free after malloc? Kyle Cronin 2009-03-17T15:33:02Z 2009-03-17T15:33:02Z <p>There's no real <em>danger</em> in not freeing your variables, but if you assign a pointer to a block of memory to a different block of memory without freeing the first block, the first block is no longer accessible but still takes up space. This is what's called a memory leak, and if you do this with regularity then your process will start to consume more and more memory, taking away system resources from other processes.</p> <p>If the process is short-lived you can often get away with doing this as all allocated memory is reclaimed by the operating system when the process completes, but I would advise getting in the habit of freeing all memory you have no further use for.</p> http://stackoverflow.com/questions/654754/what-really-happens-when-you-dont-free-after-malloc/654773#654773 2 Answer by antti.huima for What REALLY happens when you don't free after malloc? antti.huima 2009-03-17T15:33:57Z 2009-03-17T15:33:57Z <p>It is completely fine to leave memory unfreed when you exit; malloc() allocates the memory from the memory area called "the heap", and the complete heap of a process is freed when the process exits.</p> <p>That being said, one reason why people still insist that it is good to free everything before exiting is that memory debuggers (e.g. valgrind on Linux) detect the unfreed blocks as memory leaks, and if you have also "real" memory leaks, it becomes more difficult to spot them if you also get "fake" results at the end.</p> http://stackoverflow.com/questions/654754/what-really-happens-when-you-dont-free-after-malloc/654778#654778 4 Answer by Bill the Lizard for What REALLY happens when you don't free after malloc? Bill the Lizard 2009-03-17T15:34:45Z 2009-03-17T15:55:30Z <p>If you're using the memory you've allocated, then you're not doing anything wrong. It becomes a problem when you write functions (other than main) that allocate memory without freeing it, and without making it available to the rest of your program. Then your program continues running with that memory allocated to it, but no way of using it. Your program <em>and other running programs</em> are deprived of that memory.</p> <p>Edit: It's not 100% accurate to say that other running programs are deprived of that memory. The operating system can always let them use it at the expense of swapping your program out to virtual memory (<code>&lt;/handwaving&gt;</code>). The point is, though, that if your program frees memory that it isn't using then a virtual memory swap is less likely to be necessary.</p> http://stackoverflow.com/questions/654754/what-really-happens-when-you-dont-free-after-malloc/654781#654781 1 Answer by Michael for What REALLY happens when you don't free after malloc? Michael 2009-03-17T15:35:06Z 2009-03-17T15:35:06Z <p>You are correct, memory is automatically freed when the process exits. Some people strive not to do extensive cleanup when the process is terminated, since it will all be relinquished to the operating system. However, while your program is running you should free unused memory. If you don't, you may eventually run out or cause excessive paging if your working set gets too big.</p> http://stackoverflow.com/questions/654754/what-really-happens-when-you-dont-free-after-malloc/654783#654783 0 Answer by ojrac for What REALLY happens when you don't free after malloc? ojrac 2009-03-17T15:35:26Z 2009-03-17T15:35:26Z <p>If you're developing an application from scratch, you can make some educated choices about when to call free. Your example program is fine: it allocates memory, maybe you have it work for a few seconds, and then closes, freeing all the resources it claimed.</p> <p>If you're writing anything else, though -- a server/long-running application, or a library to be used by someone else, you should expect to call free on everything you malloc.</p> <p>Ignoring the pragmatic side for a second, it's much safer to follow the stricter approach, and force yourself to free everything you malloc. If you're not in the habit of watching for memory leaks whenever you code, you could easily spring a few leaks. So in other words, yes -- you can get away without it; please be careful, though.</p> http://stackoverflow.com/questions/654754/what-really-happens-when-you-dont-free-after-malloc/654785#654785 2 Answer by Uri for What REALLY happens when you don't free after malloc? Uri 2009-03-17T15:35:35Z 2009-03-17T15:35:35Z <p>You are absolutely correct in that respect. In small trivial programs where a variable must exist until the death of the program, there is no real benefit to deallocating the memory.</p> <p>In fact, I had once been involved in a project where each execution of the program was very complex but relatively short-lived, and the decision was to just keep memory allocated and not destabilize the project by making mistakes deallocating it. </p> <p>That being said, in most programs this is not really an option, or it can lead you to run out of memory. </p> http://stackoverflow.com/questions/654754/what-really-happens-when-you-dont-free-after-malloc/654798#654798 0 Answer by mouviciel for What REALLY happens when you don't free after malloc? mouviciel 2009-03-17T15:38:19Z 2009-03-17T15:38:19Z <p>I think that your two examples are actually only one: the <code>free()</code> should occur only at the end of the process, which as you point out is useless since the process is terminating.</p> <p>In you second example though, the only difference is that you allow an undefined number of <code>malloc()</code>, which could lead to running out of memory. The only way to handle the situation is to check the return code of <code>malloc()</code> and act accordingly.</p> http://stackoverflow.com/questions/654754/what-really-happens-when-you-dont-free-after-malloc/655059#655059 10 Answer by Trevor Boyd Smith for What REALLY happens when you don't free after malloc? Trevor Boyd Smith 2009-03-17T16:43:37Z 2009-03-17T16:43:37Z <p>=== What about <strong>future proofing</strong> and <strong>code reuse</strong>? ===</p> <p>If you <strong>don't</strong> write the code to free the objects, then you are limiting the code to only being safe to use when you can depend on the memory being free'd by the process being closed ... i.e. small projects.</p> <p>If you <strong>do</strong> write the code that free()s all your dynamically allocated memory, then you are future proofing the code and letting others use it in a larger project.</p> http://stackoverflow.com/questions/654754/what-really-happens-when-you-dont-free-after-malloc/655123#655123 0 Answer by lsalamon for What REALLY happens when you don't free after malloc? lsalamon 2009-03-17T16:56:59Z 2009-03-17T16:56:59Z <p>In the real world application not freeing memory is running to overkill. Nothing works without following conventions.</p> http://stackoverflow.com/questions/654754/what-really-happens-when-you-dont-free-after-malloc/657302#657302 2 Answer by sharptooth for What REALLY happens when you don't free after malloc? sharptooth 2009-03-18T08:00:51Z 2009-03-18T08:00:51Z <p>This code will work usually work allright, but consider the problem of code reuse.</p> <p>You may have written some code snippet which doesn't free allocated memory, it is run in such a way that memory is then automatically reclaimed. Seems allright.</p> <p>Then someone else copies your snippet into his project in such a way that it is executed one thousand times per second. That person now has a huge memory leak in his program. Not very good in general, usually fatal for a server application.</p> <p>Code reuse is typical in enterprises. Usually the company owns all the code its employees produce and every department may reuse whatever the company owns. So by writing such "innocently-looking" code you cause potential headache to other people. This may get you fired.</p> http://stackoverflow.com/questions/654754/what-really-happens-when-you-dont-free-after-malloc/657384#657384 4 Answer by Tim Post for What REALLY happens when you don't free after malloc? Tim Post 2009-03-18T08:36:05Z 2009-03-18T08:42:57Z <p>I typically free every allocated block once I'm sure that I'm done with it. Today, my program's entry point might be main(int argc, char *argv[]) , but tomorrow it might be foo_entry_point(char **args, struct foo *f) and typed as a function pointer.</p> <p>So, if that happens, I now have a leak. </p> <p>Regarding your second question, if my program took input like a=5, I would allocate space for a, or re-allocate the same space on a subsequent a="foo". This would remain allocated until:</p> <ol> <li>The user typed 'unset a'</li> <li>My cleanup function was entered, either servicing a signal or the user typed 'quit'</li> </ol> <p>I can not think of any <em>modern</em> OS that does not reclaim memory after a process exits. Then again, free() is cheap, why not clean up? As others have said, tools like valgrind are great for spotting leaks that you really do need to worry about. Even though the blocks you example would be labeled as 'still reachable' , its just extra noise in the output when your trying to ensure you have no leaks.</p> <p>Another myth is "<em>If its in main(), I don't have to free it</em>", this is incorrect. Consider the following:</p> <pre><code>char *t; for (i=0; i &lt; 255; i++) { t = strdup(foo-&gt;name); let_strtok_eat_away_at(t); } </code></pre> <p>If that came prior to forking / daemonizing (and in theory running forever), your program has just leaked an undetermined size of t 255 times.</p> <p>A good, well written program should always clean up after itself. Free all memory, flush all files, close all descriptors, unlink all temporary files, etc. This cleanup function should be reached upon normal termination, or upon receiving various kinds of fatal signals, unless you want to leave some files laying around so you can detect a crash and resume.</p> <p>Really, be kind to the poor soul who has to maintain your stuff when you move on to other things .. hand it to them 'valgrind clean' :)</p>