leak-detective: Use passed callback to report leaks

This prevented `stroke memusage` from reporting the leaks on the
console.  Instead, they were sent to the callbacks set up by libstrongswan.

Fixes a426851f63 ("leak-detective: Use callback functions to report
leaks and usage information").
This commit is contained in:
Tobias Brunner
2015-04-20 11:22:55 +02:00
parent f9342fac8f
commit e4d2c9f187
+2 -2
View File
@@ -691,8 +691,8 @@ static int print_traces(private_leak_detective_t *this,
{
if (!thresh_count || entry->count >= thresh_count)
{
this->report_cb(this->report_data, entry->count,
entry->bytes, entry->backtrace, detailed);
cb(user, entry->count, entry->bytes, entry->backtrace,
detailed);
}
}
}