Are memory leaks ever ok? - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T17:31:42Zhttp://stackoverflow.com/feeds/question/273209http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok46Are memory leaks ever ok?Imbue2008-11-07T19:01:52Z2009-11-01T11:53:53Z
<p>Is it ever acceptable to have a <a href="http://en.wikipedia.org/wiki/Memory_leak" rel="nofollow">memory leak</a> in your C or C++ application?</p>
<p>What if you allocate some memory and use it until the very last line of code in your application (for example, a global object's deconstructor)? As long as the memory consumption doesn't grow over time, is it OK to trust the OS to free your memory for you when your application terminates (on Windows, Mac, and Linux)? Would you even consider this a real memory leak if the memory was being used continuously until it was freed by the OS.</p>
<p>What if a third party library forced this situation on you? Would refuse to use that third party library no matter how great it otherwise might be?</p>
<p>I only see one practical disadvantage, and that is that these benign leaks will show up with memory leak detection tools as false positives.</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/273225#27322520Answer by vfilby for Are memory leaks ever ok?vfilby2008-11-07T19:05:12Z2008-11-07T19:05:12Z<p>In theory no, in practise <em>it depends</em>.</p>
<p>It really depends on how much data the program is working on, how often the program is run and whether or not it is running constantly.</p>
<p>If I have a quick program that reads a small amount of data makes a calculation and exits, a small memory leak will never be noticed. Because the program is not running for very long and only uses a small amount of memory, the leak will be small and freed when the program exists.</p>
<p>On the other hand if I have a program that processes millions of records and runs for a long time, a small memory leak might bring down the machine given enough time.</p>
<p>As for third party libraries that have leaks, if they cause a problem either fix the library or find a better alternative. If it doesn't cause a problem, does it really matter?</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/273232#27323238Answer by Jim C for Are memory leaks ever ok?Jim C2008-11-07T19:06:51Z2008-11-07T19:06:51Z<p>I don't consider it to be a memory leak unless the amount of memory being "used" keeps growing. Having some unreleased memory, while not ideal, is not a big problem unless the amount of memory required keeps growing.</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/273233#2732331Answer by Sanjaya R for Are memory leaks ever ok?Sanjaya R2008-11-07T19:07:00Z2008-11-07T19:07:00Z<p>Its really not a leak if its intentional and its not a problem unless its a significant amount of memory, or could grow to be a significant amount of memory. Its fairly common to not cleanup global allocations during the lifetime of a program. If the leak is in a server or long running app, grows over time, then its a problem.</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/273234#2732345Answer by pearcewg for Are memory leaks ever ok?pearcewg2008-11-07T19:07:13Z2008-11-07T19:07:13Z<p>I'm sure that someone can come up with a reason to say Yes, but it won't be me.
Instead of saying no, I'm going to say that this shouldn't be a yes/no question.
There are ways to manage or contain memory leaks, and many systems have them.</p>
<p>There are NASA systems on devices that leave the earth that plan for this. The systems will automatically reboot every so often so that memory leaks will not become fatal to the overall operation. Just an example of containment.</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/273237#2732372Answer by Corey Trager for Are memory leaks ever ok?Corey Trager2008-11-07T19:07:51Z2008-11-07T19:07:51Z<p>I think you've answered your own question. The biggest drawback is how they interfere with the memory leak detection tools, but I think that drawback is a HUGE drawback for certain types of applications.</p>
<p>I work with legacy server applications that are supposed to be rock solid but they have leaks and the globals DO get in the way of the memory detection tools. It's a big deal. </p>
<p>In the book "Collapse" by Jared Diamond, the author wonders about what the guy was thinking who cut down the last tree on Easter Island, the tree he would have needed in order to build a canoe to get off the island. I wonder about the day many years ago when that first global was added to our codebase. THAT was the day it should have been caught.</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/273241#27324117Answer by kasperjj for Are memory leaks ever ok?kasperjj2008-11-07T19:08:27Z2009-03-06T17:07:56Z<p>There is nothing conceptually wrong with having the os clean up after the application is run.</p>
<p>It really depends on the application and how it will be run. Continually occurring leaks in an application that needs to run for weeks has to be taken care of, but a small tool that calculates a result without too high of a memory need should not be a problem.</p>
<p>There is a reason why many scripting language do not garbage collect cyclical references… for their usage patterns, it's not an actual problem and would thus be as much of a waste of resources as the wasted memory.</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/273245#2732453Answer by tloach for Are memory leaks ever ok?tloach2008-11-07T19:08:55Z2008-11-07T19:08:55Z<p>I see the same problem as all scenario questions like this: What happens when the program changes, and suddenly that little memory leak is being called ten million times and the end of your program is in a different place so it does matter? If it's in a library then log a bug with the library maintainers, don't put a leak into your own code.</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/273249#2732492Answer by Konrad Rudolph for Are memory leaks ever ok?Konrad Rudolph2008-11-07T19:12:19Z2008-11-07T19:12:19Z<p>I'll answer no.</p>
<p>In theory, the operating system will clean up after you if you leave a mess (now that's just rude, but since computers don't have feelings it might be acceptable). But you can't anticipate every possible situation that might occur when your program is run. Therefore (unless you are able to conduct a formal proof of some behaviour), creating memory leaks is just irresponsible and sloppy from a professional point of view.</p>
<p>If a third-party component leaks memory, this is a very strong argument against using it, not only because of the imminent effect but also because it shows that the programmers work sloppily and that this might also impact other metrics. Now, when considering legacy systems this is difficult (consider web browsing components: to my knowledge, they <em>all</em> leak memory) but it should be the norm.</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/273253#2732533Answer by Dustin Getz for Are memory leaks ever ok?Dustin Getz2008-11-07T19:13:31Z2008-11-07T19:13:31Z<p>this is so domain-specific that its hardly worth answering. use your freaking head.</p>
<ul>
<li>space shuttle operating system: nope, no memory leaks allowed</li>
<li>rapid development proof-of-concept code: fixing all those memory leaks is a waste of time.</li>
</ul>
<p>and there is a spectrum of intermediate situations.</p>
<p>the opportunity cost ($$$) of delaying a product release to fix all but the worst memory leaks is usually dwarfs any feelings of being "sloppy or unprofessional". Your boss pays you to make him money, not to get a warm, fuzzy feelings.</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/273254#2732547Answer by Bill the Lizard for Are memory leaks ever ok?Bill the Lizard2008-11-07T19:13:32Z2008-11-07T19:13:32Z<p>If you allocate memory and use it until the last line of your program, that's not a leak. If you allocate memory and forget about it, even if the amount of memory isn't growing, that's a problem. That allocated but unused memory can cause other programs to run slower or not at all.</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/273265#2732654Answer by John Dibling for Are memory leaks ever ok?John Dibling2008-11-07T19:15:09Z2008-11-07T19:15:09Z<p>You have to first realize that there's a big difference between a perceived memory leak and an actual memory leak. Very frequently analysis tools will report many red herrings, and label something as having been leaked (memory or resources such as handles etc) where it actually isn't. Often times this is due to the analysis tool's architecture. For example, certain analysis tools will report run time objects as memory leaks because it never sees those object freed. But the deallocation occurs in the runtime's shutdown code, which the analysis tool might not be able to see.</p>
<p>With that said, there will still be times when you will have actual memory leaks that are either very difficult to find or very difficult to fix. So now the question becomes is it ever OK to leave them in the code?</p>
<p>The ideal answer is, "no, never." A more pragmatic answer may be "no, almost never." Very often in real life you have limited number of resources and time to resolve and endless list of tasks. When one of the tasks is eliminating memory leaks, the law of diminishing returns very often comes in to play. You could eliminate say 98% of all memory leaks in an application in a week, but the remaining 2% might take months. In some cases it might even be impossible to eliminate certain leaks because of the application's architecture without a major refactoring of code. You have to weigh the costs and benefits of eliminating the remaining 2%.</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/273267#2732679Answer by Cervo for Are memory leaks ever ok?Cervo2008-11-07T19:15:27Z2008-11-07T19:15:27Z<p>I think in your situation the answer may be that it's okay. But you definitely need to document that the memory leak is a conscious decision. You don't want a maintenance programmer to come along, slap your code inside a function, and call it a million times. So if you make the decision that a leak is okay you need to document it (IN BIG LETTERS) for whoever may have to work on the program in the future.</p>
<p>If this is a third party library you may be trapped. But definitely document that this leak occurs.</p>
<p>But basically if the memory leak is a known quantity like a 512 KB buffer or something then it is a non issue. If the memory leak keeps growing like every time you call a library call your memory increases by 512KB and is not freed, then you may have a problem. If you document it and control the number of times the call is executed it may be manageable. But then you really need documentation because while 512 isn't much, 512 over a million calls is a lot.</p>
<p>Also you need to check your operating system documentation. If this was an embedded device there may be operating systems that don't free all the memory from a program that exits. I'm not sure, maybe this isn't true. But it is worth looking into.</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/273269#2732692Answer by Foredecker for Are memory leaks ever ok?Foredecker2008-11-07T19:15:33Z2009-03-06T17:10:40Z<p>I agree with vfilby – it depends. In Windows, we treat memory leaks as relatively serous bugs. But, it very much depends on the component. </p>
<p>For example, memory leaks are not very serious for components that run rarely, and for limited periods of time. These components run, do theire work, then exit. When they exit all their memory is freed implicitly. </p>
<p>However, memory leaks in services or other long run components (like the shell) are very serious. The reason is that these bugs 'steal' memory over time. The only way to recover this is to restart the components. Most people don't know how to restart a service or the shell – so if their system performance suffers, they just reboot.</p>
<p>So, if you have a leak – evaluate its impact two ways</p>
<ol>
<li>To your software and your user's experience.</li>
<li>To the system (and the user) in terms of being frugal with system resources.</li>
</ol>
<p>Foredecker :)</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/273286#2732862Answer by plinth for Are memory leaks ever ok?plinth2008-11-07T19:20:07Z2008-11-07T19:20:07Z<p>Historically, it did matter on some operating systems under some edge cases. These edge cases could exist in the future.</p>
<p>Here's an example, on SunOS in the Sun 3 era, there was an issue if a process used exec (or more traditionally fork and then exec), the subsequent new process would inherit the same memory footprint as the parent and it could not be shrunk. If a parent process allocated 1/2 gig of memory and didn't free it before calling exec, the child process would start using that same 1/2 gig (even though it wasn't allocated). This behavior was best exhibited by SunTools (their default windowing system), which was a memory hog. Every app that it spawned was created via fork/exec and inherited SunTools footprint, quickly filling up swap space.</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/273287#27328790Answer by JohnMcG for Are memory leaks ever ok?JohnMcG2008-11-07T19:20:25Z2009-03-06T17:07:12Z<p>No.</p>
<p>As professionals, the question we should not be asking ourselves the question, "Is it ever OK to do this?" but rather "Is there ever a <em>good</em> reason to do this?" And "hunting down that memory leak is a pain" isn't a good reason.</p>
<p>I like to keep things simple. And the simple rule is that my program should have no memory leaks.</p>
<p>That makes my life simple, too. If I detect a memory leak, I eliminate it, rather than run through some elaborate decision tree structure to determine whether it's an "acceptable" memory leak.</p>
<p>It's similar to compiler warnings – will the warning be fatal to my particular application? Maybe not. </p>
<p>But it's ultimately a matter of professional discipline. Tolerating compiler warnings and tolerating memory leaks is a bad habit that will ultimately bite me in the rear.</p>
<p>To take things to an extreme, would it ever be acceptable for a surgeon to leave some piece of operating equipment inside a patient?</p>
<p>Although it is possible that a circumstance could arise where the cost/risk of removing that piece of equipment exceeds the cost/risk of leaving it in, and there could be circumstances where it was harmless, if I saw this question posed on SurgeonOverflow.com and saw any answer other than "no," it would seriously undermine my confidence in the medical profession.</p>
<p>–</p>
<p>If a third party library forced this situation me, it would lead me to seriously suspect the overall quality of the library in question. It would be as if I test drove a car and found a couple loose washers and nuts in one of the cupholders – it may not be a big deal in itself, but it betrays a lack of commitment to quality, so I would consider alternatives.</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/273321#2733211Answer by Stefan Rådström for Are memory leaks ever ok?Stefan Rådström2008-11-07T19:29:46Z2008-11-07T19:29:46Z<p>I totally agree with JohnMcG, and just want to add that I have myself had problems to discover real, potentially serious memory leaks in time, just because it have been accepted to have the benign ones. When these have grown to be so many over time, it becomes more and more difficult to detect the serious ones in the flood of the benign ones.</p>
<p>So at least for your fellow programmers sake (and also for yourself in the future), please try to eleminate them as soon as possible.</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/273339#2733391Answer by Louis Gerbarg for Are memory leaks ever ok?Louis Gerbarg2008-11-07T19:33:04Z2008-11-07T19:33:04Z<p>In this sort of question context is everything. Personally I can't stand leaks, and in my code I go to great lengths to fix them if they crop up, but it is not always worth it to fix a leak, and when people are paying me by the hour I have on occasion told them it was not worth my fee for me to fix a leak in their code. Let me give you an example:</p>
<p>I was triaging a project, doing some perf work and fixing a lot of bugs. There was a leak during the applications initialization that I tracked down, and fully understood. Fixing it properly would have required a day or so refactoring a piece of otherwise functional code. I could have done something hacky (like stuffing the value into a global and grabbing it some point I know it was no longer in use to free), but that would have just caused more confusion to the next guy who had to touch the code.</p>
<p>Personally I would not have written the code that way in the first place, but most of us don't get to always work on pristine well designed codebases, and sometimes you have to look at these things pragmatically. The amount of time it would have taken me to fix that 150 byte leak could instead be spent making algorithmic improvements that shaved off megabytes of ram.</p>
<p>Ultimately, I decided that leaking 150 bytes for an app that used around a gig of ram and ran on a dedicated machine was not worth fixing it, so I wrote a comment saying that it was leaked, what needed to be changed in order to fix it, and why it was not worth it at the time.</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/273565#2735652Answer by Ather for Are memory leaks ever ok?Ather2008-11-07T20:32:54Z2008-11-07T20:32:54Z<p>Even if you are sure that your 'known' memory leak will not cause havoc, don't do it. At best, it will pave a way for you to make a similar and probably more critical mistake at a different time and place.</p>
<p>For me, asking this is like questioning "Can I break the red light at 3 AM in the morning when no one is around?". Well sure, it may not cause any trouble at that time but it will provide a lever for you to do the same in rush hour!</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/273585#2735855Answer by Edward Kmett for Are memory leaks ever ok?Edward Kmett2008-11-07T20:41:16Z2008-11-07T20:41:16Z<p>I can count on one hand the number of "benign" leaks that I've seen over time.</p>
<p>So the answer is a very qualified yes. </p>
<p>An example. If you have a singleton resource that needs a buffer to store a circular queue or deque but doesn't know how big the buffer will need to be and can't afford the overhead of locking or every reader, then allocating an exponentially doubling buffer but not freeing the old ones will leak a bounded amount of memory per queue/deque. The benefit for these is they speed up every access dramatically and can change the asymptotics of multiprocessor solutions by never risking contention for a lock.</p>
<p>I've seen this approach used to great benefit for things with very clearly fixed counts such as per-CPU work-stealing deques, and to a much lesser degree in the buffer used to hold the singleton <code>/proc/self/maps</code> state in Hans Boehm's conservative garbage collector for C/C++, which is used to detect the root sets, etc.</p>
<p>While technically a leak, both of these cases are bounded in size and in the growable circular work stealing deque case there is a <em>huge</em> performance win in exchange for a bounded factor of 2 increase in the memory usage for the queues.</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/273593#2735936Answer by nsayer for Are memory leaks ever ok?nsayer2008-11-07T20:44:41Z2009-03-06T17:08:30Z<p>If you allocate a bunch of heap at the beginning of your program, and you don't free it when you exit, that is not a memory leak per se. A memory leak is when your program loops over a section of code, and that code allocates heap and then "loses track" of it without freeing it.</p>
<p>In fact, there is no need to make calls to free() or delete right before you exit. When the process exits, all of its memory is reclaimed by the OS (this is certainly the case with POSIX. On other OSes – particularly embedded ones – YMMV).</p>
<p>The only caution I'd have with not freeing the memory at exit time is that if you ever refactor your program so that it, for example, becomes a service that waits for input, does whatever your program does, then loops around to wait for another service call, then what you've coded <em>can</em> turn into a memory leak.</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/273827#2738272Answer by Dima for Are memory leaks ever ok?Dima2008-11-07T22:22:18Z2008-11-07T22:22:18Z<p>This was already discussed <a href="http://stackoverflow.com/questions/233258/is-there-an-acceptable-limit-for-memory-leaks">ad nauseam</a>. Bottom line is that a memory leak is a bug and must be fixed. If a third party library leaks memory, it makes one wonder what else is wrong with it, no? If you were building a car, would you use an engine that is occasionally leaking oil? After all, somebody else made the engine, so it's not your fault and you can't fix it, right?</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/273830#2738302Answer by EvilTeach for Are memory leaks ever ok?EvilTeach2008-11-07T22:24:15Z2008-11-07T22:30:47Z<p>Generally a memory leak in a stand alone application is not fatal, as it gets cleaned up when the program exits.</p>
<p>What do you do for Server programs that are designed so they don't exit?</p>
<p>If you are the kind of programmer that does not design and implement code where the resources are allocated and released correctly, then I don't want anything to do with you or your code. If you don't care to clean up your leaked memory, what about your locks? Do you leave them hanging out there too? Do you leave little turds of temporary files laying around in various directories?</p>
<p>Leak that memory and let the program clean it up? No. Absolutely not. It's a bad habit, that leads to bugs, bugs, and more bugs.</p>
<p><strong>Clean up after yourself. Yo momma don't work here no more.</strong></p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/274042#2740421Answer by Max Lybbert for Are memory leaks ever ok?Max Lybbert2008-11-07T23:54:36Z2008-11-07T23:54:36Z<p>It looks like your definition of "memory leak" is "memory that I don't clean up myself." All modern OSes will free it on program exit. However, since this is a C++ question, you can simply wrap the memory in question inside an appropriate std::auto_ptr which will call delete when it goes out of scope.</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/274433#27443316Answer by Charlie Martin for Are memory leaks ever ok?Charlie Martin2008-11-08T06:02:47Z2008-11-08T06:02:47Z<p>Let's get our definitions correct, first. A memory <em>leak</em> is when memory is dynamically allocated, eg with <code>malloc()</code>, and all references to the memory are lost without the corresponding free. An easy way to make one is like this:</p>
<pre><code>#define BLK ((size_t)1024)
while(1){
void * vp = malloc(BLK);
}
</code></pre>
<p>Note that every time around the while(1) loop, 1024 (+overhead) bytes are allocated, and the new address assigned to vp; there's no remaining pointer to the previous malloc'ed blocks. This program is guaranteed to run until the heap runs out, and there's no way to recover any of the malloc'ed memory. Memory is "leaking" out of the heap, never to be seen again.</p>
<p>What you're describing, though, sound like</p>
<pre><code>int main(){
void * vp = malloc(LOTS);
// Go do something useful
return 0;
}
</code></pre>
<p>You allocate the memory, work with it until the program terminates. This is <em>not</em> a memory leak; it doesn't impair the program, and all the memory will be scavenged up automagically when the program terminates.</p>
<p>Generally, you should avoid memory leaks. First, because like altitude above you and fuel back at the hangar, memory that has leaked and can't be recovered is useless; second, it's a lot easier to code correctly, not leaking memory, at the start than it is to find a memory leak later.</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/275042#2750426Answer by Jason L for Are memory leaks ever ok?Jason L2008-11-08T18:55:16Z2008-11-08T18:55:16Z<p>I believe the answer is no, never allow a memory leak, and I have a few reasons which I haven't seen explicitly stated. There are great technical answers here but I think the real answer hinges on more social/human reasons.</p>
<p>(First, note that as others mentioned, a true leak is when your program, at any point, loses track of memory resources that it has allocated. In C, this happens when you <code>malloc()</code> to a pointer and let that pointer leave scope without doing a <code>free()</code> first.)</p>
<p><strong>The important crux of your decision here is habit.</strong> When you code in a language that uses pointers, you're going to use pointers <em>a lot</em>. And pointers are dangerous; they're the easiest way to add all manner of severe problems to your code.</p>
<p>When you're coding, sometimes you're going to be on the ball and sometimes you're going to be tired or mad or worried. During those somewhat distracted times, you're coding more on autopilot. <strong>The autopilot effect doesn't differentiate between one-off code and a module in a larger project. During those times, the habits you establish are what will end up in your code base.</strong></p>
<p>So no, never allow memory leaks for the same reason that you should still check your blind spots when changing lanes even if you're the only car on the road at the moment. <strong>During times when your active brain is distracted, good habits are all that can save you from disastrous missteps.</strong></p>
<p>Beyond the "habit" issue, pointers are complex and often require a lot of brain power to track mentally. It's best to not "muddy the water" when it comes to your usage of pointers, especially when you're new to programming.</p>
<p>There's a more social aspect too. By proper use of <code>malloc()</code> and <code>free()</code>, anyone who looks at your code will be at ease; you're managing your resources. If you don't, however, they'll immediately suspect a problem.</p>
<p><strong>Maybe you've worked out that the memory leak doesn't hurt anything in this context, but every maintainer of your code will have to work that out in his head too when he reads that piece of code.</strong> By using <code>free()</code> you remove the need to even consider the issue.</p>
<p>Finally, programming is writing a mental model of a process to an unambiguous language so that a person and a computer can perfectly understand said process. <strong>A vital part of good programming practice is never introducing unnecessary ambiguity.</strong></p>
<p>Smart programming is flexible and generic. Bad programming is ambiguous.</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/276806#2768069Answer by Artelius for Are memory leaks ever ok?Artelius2008-11-10T01:05:26Z2009-03-23T01:32:32Z<p>Many people seem to be under the impression that once you free memory, it's instantly returned to the operating system and can be used by other programs.</p>
<p>This isn't true. Operating systems commonly manage memory in 4KiB pages. <code>malloc</code> and other sorts of memory management get pages from the OS and sub-manage them as they see fit. It's quite likely that <code>free()</code> will <em>not</em> return pages to the operating system, under the assumption that your program will malloc more memory later.</p>
<p>I'm not saying that <code>free()</code> never returns memory to the operating system. It can happen, particularly if you are freeing large stretches of memory. But there's no guarantee.</p>
<p><strong>The important fact:</strong> If you don't free memory that you no longer need, further mallocs are guaranteed to consume <em>even more</em> memory. But if you free first, malloc might re-use the freed memory instead.</p>
<p>What does this mean in practice? It means that if you know your program isn't going to require any more memory from now on (for instance it's in the cleanup phase), freeing memory is not so important. However if the program might allocate more memory later, you should avoid memory leaks - particularly ones that can occur repeatedly.</p>
<p>Also see <a href="http://stackoverflow.com/questions/231089/freeing-in-an-atexit#242317">this comment</a> for more details about why freeing memory just before termination is bad.</p>
<p>A commenter didn't seem to understand that calling <code>free()</code> does not automatically allow other programs to use the freed memory. But that's the entire point of this answer!</p>
<p>So, to convince people, I will demonstrate an example where free() does very little good. To make the math easy to follow, I will pretend that the OS manages memory in 4000 byte pages.</p>
<p>Suppose you allocate ten thousand 100-byte blocks (for simplicity I'll ignore the extra memory that would be required to manage these allocations). This consumes 1MB, or 250 pages. If you then free 9000 of these blocks at random, you're left with just 1000 blocks - but they're scattered all over the place. Statistically, about 5 of the pages will be empty. The other 245 will each have at least one allocated block in them. That amounts to 980KB of memory, that cannot possibly be reclaimed by the operating system - even though you now only have 100KB allocated!</p>
<p>On the other hand, you can now malloc() 9000 more blocks without increasing the amount of memory your program is tying up.</p>
<p>Even when <code>free()</code> could <em>technically</em> return memory to the OS, it may not do so. <code>free()</code> needs to achieve a balance between operating quickly and saving memory. And besides, a program that has already allocated a lot of memory and then freed it is likely to do so again. A web server needs to handle request after request after request - it makes sense to keep some "slack" memory available so you don't need to ask the OS for memory all the time.</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/281895#2818952Answer by Enno for Are memory leaks ever ok?Enno2008-11-11T19:27:17Z2008-11-11T19:27:17Z<p>As a general rule, if you've got memory leaks that you feel you can't avoid, then you need to think harder about object ownership.</p>
<p>But to your question, my answer in a nutshell is <em>In production code, yes. During development, no</em>. This might seem backwards, but here's my reasoning:</p>
<p>In the situation you describe, where the memory is held until the end of the program, it's perfectly okay to not release it. Once your process exits, the OS will clean up anyway. In fact, it might make the user's experience better: In a game I've worked on, the programmers thought it would be cleaner to free all the memory before exiting, causing the shutdown of the program to take up to half a minute! A quick change that just called exit() instead made the process disappear immediately, and put the user back to the desktop where he wanted to be.</p>
<p>However, you're right about the debugging tools: They'll throw a fit, and all the false positives might make finding your real memory leaks a pain. And because of that, always write debugging code that frees the memory, and disable it when you ship.</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/284366#2843660Answer by Vinay for Are memory leaks ever ok?Vinay2008-11-12T15:48:24Z2008-11-14T15:38:15Z<p>It really depends upon the usage of the object that creating the memory leak.
If you are creating the object so many times in the life time of the application that is using the object, then it is bad to use that way. Because so much memory leak will be there.
On the other hand if we have a single instance of object without consuming the memory and leaking only in terms of small amount then it is not a problem.</p>
<p>Memory leak is a problem when the leak increases when the application is running.</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/293611#2936110Answer by Jonathan for Are memory leaks ever ok?Jonathan2008-11-16T07:08:03Z2009-03-06T17:11:31Z<p>As long as your memory utilization doesn't increase over time, it depends. If you're doing lots of complex synchronization in server software, say starting background threads that block on system calls, doing clean shutdown may be too complex to justify. In this situation the alternatives may be:</p>
<ol>
<li>Your library that doesn't clean up its memory until the process exits.</li>
<li>You write an extra 500 lines of code and add another mutex and condition variable to your class so that it can shut down cleanly from your tests – but this code is never used in production, where the server only terminates by crashing.</li>
</ol>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/293637#2936372Answer by for Are memory leaks ever ok?2008-11-16T07:36:03Z2008-11-16T07:36:03Z<p>No, you should not have leaks that the OS will clean for you. The reason (not mentioned in the answers above as far as I could check) is that you never know <strong>when your main() will be re-used as a function/module in another program</strong>. If your main() gets to be a frequently-called function in another persons' software - this software will have a memory leak that eats memory over time.</p>
<p>KIV</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/301735#3017350Answer by Jørn Jensen for Are memory leaks ever ok?Jørn Jensen2008-11-19T12:22:53Z2008-11-19T12:22:53Z<p>When an application shuts down, it can be argued that it is best to not free memory.</p>
<p>In theory, the OS should release the resources used by the application, but there is always some resources that are exceptions to this rule. So beware.</p>
<p>The good with just exiting the application:</p>
<ol>
<li>The OS gets one chunk to free instead of many many small chunks. This means shutdown is much much faster. Especially on Windows with it's slow memory management.</li>
</ol>
<p>The bad with just exiting is actually two points:</p>
<ol>
<li>It is easy to forget to release resources that the OS does not track or that the OS might wait a bit with releasing. One example is TCP sockets. </li>
<li>Memory tracking software will report <em>everything</em> not freed at exit as leaks.</li>
</ol>
<p>Because of this, you might want to have two modes of shutdown, one quick and dirty for end users and one slow and thorough for developers. Just make sure to test both :)</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/419443#4194430Answer by Steve Lacey for Are memory leaks ever ok?Steve Lacey2009-01-07T06:58:21Z2009-01-07T06:58:21Z<p>Only in one instance: The program is going to shoot itself due to an unrecoverable error.</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/419465#4194650Answer by Tim Post for Are memory leaks ever ok?Tim Post2009-01-07T07:21:23Z2009-01-07T07:21:23Z<p>The best practice is to always free what you allocate, especially if writing something that is designed to run during the entire uptime of a system, even when cleaning up prior to exiting.</p>
<p>Its a very simple rule .. programming with the intention of having no leaks makes new leaks easy to spot. Would you sell someone a car that you made knowing that it sputtered gas on the ground ever time it was turned off? :)</p>
<p>A few if () free() calls in a cleanup function are cheap, why not use them? </p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/434352#4343522Answer by Blaisorblade for Are memory leaks ever ok?Blaisorblade2009-01-12T03:23:01Z2009-01-12T03:23:01Z<p>While most answers concentrate on real memory leaks (which are not OK ever, because they are a sign of sloppy coding), this part of the question appears more interesting to me:</p>
<blockquote>
<p>What if you allocate some memory and use it until the very last line of code in your application (for example, a global object's deconstructor)? As long as the memory consumption doesn't grow over time, is it OK to trust the OS to free your memory for you when your application terminates (on Windows, Mac, and Linux)? Would you even consider this a real memory leak if the memory was being used continuously until it was freed by the OS.</p>
</blockquote>
<p>If the associated memory is used, you cannot free it before the program ends. Whether the free is done by the program exit or by the OS does not matter. As long as this is documented, so that change don't introduce real memory leaks, and as long as there is no C++ destructor or C cleanup function involved in the picture. A not-closed file might be revealed through a leaked <code>FILE</code> object, but a missing fclose() might also cause the buffer not to be flushed. </p>
<p>So, back to the original case, it is IMHO perfectly OK in itself, so much that Valgrind, one of the most powerful leak detectors, will treat such leaks only if requested. On Valgrind, when you overwrite a pointer without freeing it beforehand, it gets considered as a memory leak, because it is more likely to happen again and to cause the heap to grow endlessly.</p>
<p>Then, there are not nfreed memory blocks which are still reachable. One could make sure to free all of them at the exit, but that is just a waste of time in itself. The point is if they could be freed <em>before</em>. Lowering memory consumption is useful in any case.</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/593625#5936250Answer by Simon Buchan for Are memory leaks ever ok?Simon Buchan2009-02-27T05:43:47Z2009-02-27T05:43:47Z<p>If you are using it up until the tail of your <code>main()</code>, it is simply not a leak (assuming a protected memory system, of course!).</p>
<p>In fact, freeing objects at process shutdown is the absolute <em>worst</em> thing you could do... the OS has to page back in <em>every page you have ever created</em>. Close file handles, database connections, sure, but freeing memory is just dumb.</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/593658#5936580Answer by cpeterso for Are memory leaks ever ok?cpeterso2009-02-27T06:00:24Z2009-02-27T06:00:24Z<p>If your code has any memory leaks, even known "acceptable" leaks, then you will have an annoying time using any memory leak tools to find your "real" leaks. Just like leaving "acceptable" compiler warnings makes finding new, "real" warnings more difficult.</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/593669#5936690Answer by Ron Elliott for Are memory leaks ever ok?Ron Elliott2009-02-27T06:05:01Z2009-02-27T06:05:01Z<p>Is it ok for you to go to a mates house, have a hell of a party and leave without cleaning up?</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/672000#6720000Answer by reechard for Are memory leaks ever ok?reechard2009-03-23T01:48:21Z2009-03-23T01:48:21Z<p>No, they are not O.K., but I've implemented a few allocators, memory dumpers, and leak detectors, and have found that as a pragmatic matter it's convenient to allow one to mark such an allocation as <strong>"Not a Leak as far as the Leak Report is concerned"</strong>... </p>
<p>This helps make the leak report more useful... and not crowded with "dynamic allocation at static scope not free'd by program exit"</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/1275470#12754700Answer by Eric M for Are memory leaks ever ok?Eric M2009-08-14T00:43:30Z2009-08-14T00:43:30Z<p>Splitting hairs perhaps: what if your app is running on UNIX and can become a zombie? In this case the memory does not get reclaimed by the OS. So I say you really should de-allocate the memory before the program exits.</p>
http://stackoverflow.com/questions/273209/are-memory-leaks-ever-ok/1656978#16569780Answer by henle for Are memory leaks ever ok?henle2009-11-01T11:53:53Z2009-11-01T11:53:53Z<p>Its perfectly acceptable to omit freeing memory on the last line of the program since freeing it would have no effect on anything since the program never needs memory again.</p>