Reputation: 17521
I used to use valgrind to find memory leaks in my applications. But when i use gtk/qt/glut or any "windowing" application valgrind is spamming like an evil.
I've found out that in these libraries are no real memory leaks - but how then detect real memory leaks ?
Upvotes: 3
Views: 376
Reputation: 24164
You can use a suppression file to silence warnings in third party libraries you cannot control.
Upvotes: 1