Valgrind leak file summary:
ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
malloc/free: in use at exit: 45,065 bytes in 12 blocks.
malloc/free: 161 allocs, 149 frees, 53,301 bytes allocated.
searching for pointers to 12 not-freed blocks.
checked 583,764 bytes.
One of this 12 blocks is from strdup. I should have freed things allocated by strdup, I agree.
My question is, in general, is it bad to leave non-freed blocks? Is it called mem-leak technically?
Are they not given back to the system once program dies?
Please advise.
Edit 0: Thanks for your responses. How can I know where are these 12 non-freed blocks? And what part of code is generating them?
--track-fds=yes- was what I needed as an argument to valgrind. My prog was leaking them :D – hari Aug 9 '11 at 0:02