Bye Bye Moore

PoCソルジャーな零細事業主が作業メモを残すブログ

Valgrindのメモリリークエラー

Valgrindでは以下のメモリ問題を検知できます

4.2.1. Illegal read / Illegal write errors
4.2.2. Use of uninitialised values
4.2.3. Use of uninitialised or unaddressable values in system calls
4.2.4. Illegal frees
4.2.5. When a heap block is freed with an inappropriate deallocation function
4.2.6. Overlapping source and destination blocks
4.2.7. Fishy argument values
4.2.8. Memory leak detection

参考もと

Valgrind