Description: Using Valgrind to Find Memory Leaks and Invalid Memory Use
Valgrind is a multipurpose code profiling and memory debugging tool for Linux. It allows you to run your program in its own environment that monitors memory usage such as calls to malloc and free (or new and delete in C++). If you use uninitialized memory, write off the end of an array, or forget to free a pointer, Valgrind can detect it.
To Search:
File list (Check if you may need any files):
valgrind.txt