Hello,
I'm running Valgrind to check my C++ program for memory leaks (working on Mandrive). I'm now at the point where I get this output
Now, when I run Valgrind with the -v option, this is preceded by:
And the first line is then repeated 27 times.
I'm confident with this output that there are no memory leaks, but any thoughts on where those warning come from?
(just curious, actually)
Thanks!
Jörg
I'm running Valgrind to check my C++ program for memory leaks (working on Mandrive). I'm now at the point where I get this output
Code:
ERROR SUMMARY: 0 errors from 0 contexts (suppressed 67 from 1) malloc/free: in use at exit: 0 bytes in 0 blocks. malloc/free: 64 allocs, 64 frees, 1987 bytes allocated All heap blocks were freed -- no leaks are possible.
Code:
Warning: zero-sized CIE/FDE but not at section end in DWARF2 CFI reading WARNING: new redirection conflicts with existing -- ignoring it
I'm confident with this output that there are no memory leaks, but any thoughts on where those warning come from?
(just curious, actually)
Thanks!
Jörg
Comment