show/hide this revision's text 3 Clarified the title.

Acceptable Is there an acceptable limit for memory leak limitsleaks?

show/hide this revision's text 2 This question is not about learning/education, so I removed that tag.
show/hide this revision's text 1

Acceptable memory leak limits

I've just started experimenting with SDL in C++, and I thought checking for memory leaks regularly may be a good habit to form early on.

With this in mind, I've been running my 'Hello world' programs through Valgrind to catch any leaks, and although I've removed everything except the most basic SDL_Init() and SDL_Quit() statements, Valgrind still reports 120 bytes lost and 77k still reachable.

My question is: Is there an acceptable limit for memory leaks, or should I strive to make all my code completely leak-free?