There is no commentSelect some text and then click Comment, or simply add a comment to this page from below to start a discussion.
I. Introduction
I'm learning memory management using the valgrind tool and documenting it in this note.
Environment setting
Ubuntu Linux version: 24.04.1 LTS
gcc version: 13.3.0
Valgrind version: 3.22.0
II. Valgrind tool
Memory leak types:
definitely lost: program is leaking memory
indirectly lost: program is leaking memory in a pointer-based structure. (E.g. if the root node of a binary tree is "definitely lost", all the children will be "indirectly lost".) If you fix the "definitely lost" leaks, the "indirectly lost" leaks should go away.
possibly lost: program is leaking memory, unless you're doing unusual things with pointers that could cause them to point into the middle of an allocated block.
still reachable: program is probably ok β it didn't free some memory it could have. This is quite common and often reasonable.
suppressed: means that a leak error has been suppressed. There are some suppressions in the default suppression files. You can ignore suppressed errors.
command: $ valgrind --tool=<toolname> <program>
III. Experiment
Case 1: Memory Leak - Definitely Lost
I created a C code file that does not free() allocated memory after using malloc as shown below.
A still reachable memory leak indicates that when the process terminated, its dynamically allocated memory can still be accessed by other processes because a pointer still references it.
A still reachable memory leak typically occurs when a global or static pointer references allocated memory. Since global and static variables persist from the start to the end of the process, failing to free the allocated memory before termination leads to a still reachable memory leak.
There are four memory misoperations in the code above. However, after compiling it, only one warning message appears, and no error messages are generated.
Using the valgrind command I used earlier, the valgrind tool detects memory usage errors, including:
Invalid memory write in line 9: strcpy(str, "Curry");.
Invalid memory read in line 14: printf("%d", arr[4]);, and in line 18: printf("%d", arr[0]) after the memory has already been freed.
Invalid memory free in line 21: free(arr) after the specified memory had already been freed.
Additionally, we can observe that there is no memory leak in the HEAP SUMMARY section.