up vote 98 down vote favorite
24
share [g+] share [fb]

Is it ever acceptable to have a memory leak in your C or C++ application?

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 destructor)? 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.

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?

I only see one practical disadvantage, and that is that these benign leaks will show up with memory leak detection tools as false positives.

link|improve this question
14  
If the memory consumption doesn't grow over time, it's not a leak. – mpez0 Mar 7 '10 at 19:39
2  
Most applications (including all .NET programs) have at least a few buffers that are allocated once and never freed explicitly., so mpez0's definition is more useful. – Ben Voigt Sep 18 '10 at 20:12
feedback

47 Answers

1 2

I believe it is okay if you have a program that will run for a matter of seconds and then quit and it is just for personal use. Any memory leaks will be cleaned up as soon as your program ends.

The problem comes when you have a program that runs for along time and users rely on it. Also it is bad coding habit to let memory leaks exist in your program especially for work if they may turn that code into something else someday.

All in all its better to remove memory leaks.

link|improve this answer
feedback

I took one class in high school on C and the teacher said always make sure to free when you malloc.

But when I took another course college the Professor said it was ok not to free for small programs that only run for a second. So I suppose it doesn't hurt your program, but it is good practice to free for strong, healthy code.

link|improve this answer
feedback

I'm going to give the unpopular but practical answer that it's always wrong to free memory unless doing so will reduce the memory usage of your program. For instance a program that makes a single allocation or series of allocations to load the dataset it will use for its entire lifetime has no need to free anything. In the more common case of a large program with very dynamic memory requirements (think of a web browser), you should obviously free memory you're no longer using as soon as you can (for instance closing a tab/document/etc.), but there's no reason to free anything when the user selects clicks "exit", and doing so is actually harmful to the user experience.

Why? Freeing memory requires touching memory. Even if your system's malloc implementation happens not to store metadata adjacent to the allocated memory blocks, you're likely going to be walking recursive structures just to find all the pointers you need to free.

Now, suppose your program has worked with a large volume of data, but hasn't touched most of it for a while (again, web browser is a great example). If the user is running a lot of apps, a good portion of that data has likely been swapped to disk. If you just exit(0) or return from main, it exits instantly. Great user experience. If you go to the trouble of trying to free everything, you may spend 5 seconds or more swapping all the data back in, only to throw it away immediately after that. Waste of user's time. Waste of laptop's battery life. Waste of wear on the hard disk.

This is not just theoretical. Whenever I find myself with too many apps loaded and the disk starts thrashing, I don't even consider clicking "exit". I get to a terminal as fast as I can and type killall -9 ... because I know "exit" will just make it worse.

link|improve this answer
feedback

I guess it's fine if you're writing a program meant to leak memory (i.e. to test the impact of memory leaks on system performance).

link|improve this answer
show 1 more comment
feedback

When an application shuts down, it can be argued that it is best to not free memory.

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.

The good with just exiting the application:

  1. 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.

The bad with just exiting is actually two points:

  1. 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.
  2. Memory tracking software will report everything not freed at exit as leaks.

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 :)

link|improve this answer
feedback

Only in one instance: The program is going to shoot itself due to an unrecoverable error.

link|improve this answer
feedback

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.

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? :)

A few if () free() calls in a cleanup function are cheap, why not use them?

link|improve this answer
feedback

If you are using it up until the tail of your main(), it is simply not a leak (assuming a protected memory system, of course!).

In fact, freeing objects at process shutdown is the absolute worst thing you could do... the OS has to page back in every page you have ever created. Close file handles, database connections, sure, but freeing memory is just dumb.

link|improve this answer
feedback

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.

link|improve this answer
feedback

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:

  1. Your library that doesn't clean up its memory until the process exits.
  2. 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.
link|improve this answer
feedback

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 "Not a Leak as far as the Leak Report is concerned"...

This helps make the leak report more useful... and not crowded with "dynamic allocation at static scope not free'd by program exit"

link|improve this answer
feedback

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.

link|improve this answer
feedback

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.

link|improve this answer
feedback

Some time ago I would have said yes, that it was sometime acceptable to let some memory leaks in your program (it is still on rapid prototyping) but having made now 5 or 6 times the experience that tracking even the least leak revealed some really severe functional errors. Letting a leak in a program happens when the life cycle of a data entity is not really known, showing a crass lack of analysis. So in conclusion, it is always a good idea to know what happens in a program.

link|improve this answer
feedback

Think of the case that the application is later used from another, with the possibilities to open several of them in separate windows or after each other to do something. If it is not run a a process, but as a library, then the calling program leak memory because you thought you cold skip the memory cleanup.

Use some sort of smart pointer that does it for you automatically (e.g. scoped_ptr from Boost libs)

link|improve this answer
feedback

The rule is simple: if you finished using some memory clean it. and sometimes even if we need some instances later but we remark that we use memory heavily, so it can impact preformance due to swap to disk, we can store data to files in disk and after reload them, sometimes this technique optimize a lot your program.

link|improve this answer
feedback

Memory leaks are Okay, if you are an experienced professional fighting a war and literally developing under fire for 18 hours a day. Same for releasing a debug EXE.

link|improve this answer
feedback
1 2

Your Answer

 
or
required, but never shown

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