The calloc was in the original tested version of the patch
and I made accidental last minute change.
Installed to master as obvious.
libgcc/ChangeLog:
* libgcov.h (gcov_topn_add_value): Use xcalloc instead
of xmalloc.
else
{
struct gcov_kvp *new_node
- = (struct gcov_kvp *)xmalloc (sizeof (struct gcov_kvp));
+ = (struct gcov_kvp *)xcalloc (1, sizeof (struct gcov_kvp));
new_node->value = value;
new_node->count = count;