Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Valgrind report

Tags:

c

valgrind

I used the valgrind command

valgrind --leak-check=full --show-reachable=yes -v

to check for detected and suppressed errors and got a report on

ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 13 from 8)

What exactly does (suppressed:13 from 8) mean?

like image 335
some_id Avatar asked Jan 30 '11 21:01

some_id


1 Answers

It means there were 13 separate problems - possibly leaked memory, or (more likely) known access errors - from 8 different locations that were not reported because they are known issues and not in your code. You may be able to alter the suppressions list to see what they are.

like image 51
Jonathan Leffler Avatar answered Sep 27 '22 22:09

Jonathan Leffler