mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
lib: write talloc report in notmuch_database_destroy
Since most memory allocation is (ultimately) in the talloc context defined by a notmuch_database_t pointer, this gives a more complete view of memory still allocated at program shutdown. We also change the talloc report in notmuch.c to mode "a" to avoid clobbering the newly reported log.
This commit is contained in:
parent
2c96956b3b
commit
ea301102ab
2 changed files with 10 additions and 1 deletions
|
@ -733,6 +733,15 @@ notmuch_status_t
|
|||
notmuch_database_destroy (notmuch_database_t *notmuch)
|
||||
{
|
||||
notmuch_status_t status;
|
||||
const char* talloc_report;
|
||||
|
||||
talloc_report = getenv ("NOTMUCH_TALLOC_REPORT");
|
||||
if (talloc_report && strcmp (talloc_report, "") != 0) {
|
||||
FILE *report = fopen (talloc_report, "a");
|
||||
if (report) {
|
||||
talloc_report_full (notmuch, report);
|
||||
}
|
||||
}
|
||||
|
||||
status = notmuch_database_close (notmuch);
|
||||
|
||||
|
|
|
@ -589,7 +589,7 @@ main (int argc, char *argv[])
|
|||
* talloc_enable_null_tracking
|
||||
*/
|
||||
|
||||
FILE *report = fopen (talloc_report, "w");
|
||||
FILE *report = fopen (talloc_report, "a");
|
||||
if (report) {
|
||||
talloc_report_full (NULL, report);
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue