Could someone please help me understand the concept of memory leaking and how specific data structures promote/prevent it (e.g. linked lists, arrays etc). I've been taught it twice by 2 different people a while ago - which has confused me slightly because of the differences in teaching methods.
|
|
Wikipedia has a good description on memory leaks. The defintion given there is:
For example, the following C function leaks memory:
The above function leaks As for the second part of your question, there is nothing intrinsic to data structures that makes them leak memory, but a careless implementation of a data structure could leak memory. As an example, consider the following function that deletes an element from a linked list:
|
||||
|
|
|
Basically, a memory leak occurs when a program allocates memory and does not release it even though it is not anymore needed.
As you see from the second point, collections in general tend to be a focus of memory leaks because it's not obvious what they contain, doubly so when they are maintained internally by a long-lived object. The prototypical memory leak is a cache (i.e. a collection that is maintained implicitly) kept in a static variable (i.e. maximally long-lived). |
|||
|
|
|
I agree with Vijay's answer for the most part, but it is important to note that leaks occur when references to heap blocks (pointers) are lost. The two common causes are: 1 - Losing scope of the pointer
In the above, we've lost scope of the pointer However, if we just changed the function to 2 - Re-assigning pointers without saving the original
In this example, we've lost 99 references to blocks that Another typical misconception is that memory that is still reachable at program exit is leaked if the program does not free it prior to exiting. This has not been true for a very long time. A leak only happens when there is no way to dereference a previously allocated block in order to free it. It should also be noted that dealing with the |
|||
|
|
|
The answer provided by Vijay shows you how to produce a memory leak. But finding a leak can be a quite difficult task once your program grows beyond a few lines of code. If you're on Linux, valgrind can help you to find leaks. On Windows you could use the CRT Debug Heap, which displays what leaked out, but not where it was allocated. To display where the leaking memory was allocated, you could use the Memory Validator which is quite painless to use: either run your program under the hood of Memory Validator or attach to a running process. No changes in sources are required. They provide a 30 day trial which is fully functional. |
|||
|
|
|
I can't really add to what the others have said in terms of defining memory leaks, but I can give you a few notes on when memory leaks might happen. The first case that comes to mind is that of a function that does an allocation:
There is nothing inheritently wrong with writing a function this way. It's a very similar concept to malloc. The problem is, you now start doing:
And its easy to forget, now that isn't a malloc, to free x. Again, there is nothing about this that means you will forget, but my experience tells me this is the sort of thing I and others overlook. A good strategy to get around this is to indicate in the function naming that allocation happens. So, call the function The second case that comes to mind is threads, especially
There is a subtle error here. The parent will not leak any memory, but the child does, because it is an exact copy of the parent, heap included, but it exits before freeing anything. Free must happen on both code paths. Likewise, if the fork fails, you still haven't freed. It is easy to miss things when you're writing code like this. A better method is to create an exit code variable like That said, threading and forking always make debugging more difficult due to their nature. |
|||
|
|