* [PATCH 1/2] lib: write talloc report in notmuch_database_destroy
@ 2021-06-19 0:59 David Bremner
2021-06-19 0:59 ` [PATCH 2/2] lib/config: fix memory leak David Bremner
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: David Bremner @ 2021-06-19 0:59 UTC (permalink / raw)
To: notmuch; +Cc: David Bremner
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.
---
lib/database.cc | 9 +++++++++
notmuch.c | 2 +-
2 files changed, 10 insertions(+), 1 deletion(-)
diff --git a/lib/database.cc b/lib/database.cc
index 96458f6f..0052cb65 100644
--- a/lib/database.cc
+++ b/lib/database.cc
@@ -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);
diff --git a/notmuch.c b/notmuch.c
index d0a94fc2..1404b70c 100644
--- a/notmuch.c
+++ b/notmuch.c
@@ -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 {
--
2.30.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 2/2] lib/config: fix memory leak
2021-06-19 0:59 [PATCH 1/2] lib: write talloc report in notmuch_database_destroy David Bremner
@ 2021-06-19 0:59 ` David Bremner
2021-06-25 12:46 ` David Bremner
2021-06-19 13:55 ` [PATCH 1/2] lib: write talloc report in notmuch_database_destroy David Bremner
2021-06-25 12:45 ` David Bremner
2 siblings, 1 reply; 5+ messages in thread
From: David Bremner @ 2021-06-19 0:59 UTC (permalink / raw)
To: notmuch; +Cc: David Bremner
This commit fixes a small memory leak (per iterator restart) by
actually using the talloc context intended to be blown away on
restart.
---
lib/config.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/config.cc b/lib/config.cc
index 0ec66372..368ed669 100644
--- a/lib/config.cc
+++ b/lib/config.cc
@@ -318,7 +318,7 @@ notmuch_config_values_valid (notmuch_config_values_t *values)
const char *
notmuch_config_values_get (notmuch_config_values_t *values)
{
- return talloc_strndup (values, values->iterator, values->tok_len);
+ return talloc_strndup (values->children, values->iterator, values->tok_len);
}
void
--
2.30.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 2/2] lib/config: fix memory leak
2021-06-19 0:59 ` [PATCH 2/2] lib/config: fix memory leak David Bremner
@ 2021-06-25 12:46 ` David Bremner
0 siblings, 0 replies; 5+ messages in thread
From: David Bremner @ 2021-06-25 12:46 UTC (permalink / raw)
To: notmuch
David Bremner <david@tethera.net> writes:
> This commit fixes a small memory leak (per iterator restart) by
> actually using the talloc context intended to be blown away on
> restart.
> ---
> lib/config.cc | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/lib/config.cc b/lib/config.cc
> index 0ec66372..368ed669 100644
> --- a/lib/config.cc
> +++ b/lib/config.cc
> @@ -318,7 +318,7 @@ notmuch_config_values_valid (notmuch_config_values_t *values)
> const char *
> notmuch_config_values_get (notmuch_config_values_t *values)
> {
> - return talloc_strndup (values, values->iterator, values->tok_len);
> + return talloc_strndup (values->children, values->iterator, values->tok_len);
> }
applied to release and master
d
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] lib: write talloc report in notmuch_database_destroy
2021-06-19 0:59 [PATCH 1/2] lib: write talloc report in notmuch_database_destroy David Bremner
2021-06-19 0:59 ` [PATCH 2/2] lib/config: fix memory leak David Bremner
@ 2021-06-19 13:55 ` David Bremner
2021-06-25 12:45 ` David Bremner
2 siblings, 0 replies; 5+ messages in thread
From: David Bremner @ 2021-06-19 13:55 UTC (permalink / raw)
To: notmuch
David Bremner <david@tethera.net> writes:
> notmuch_status_t status;
> + const char* talloc_report;
uncrustify tells me that should be
const char *talloc_report
fixed in git.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 1/2] lib: write talloc report in notmuch_database_destroy
2021-06-19 0:59 [PATCH 1/2] lib: write talloc report in notmuch_database_destroy David Bremner
2021-06-19 0:59 ` [PATCH 2/2] lib/config: fix memory leak David Bremner
2021-06-19 13:55 ` [PATCH 1/2] lib: write talloc report in notmuch_database_destroy David Bremner
@ 2021-06-25 12:45 ` David Bremner
2 siblings, 0 replies; 5+ messages in thread
From: David Bremner @ 2021-06-25 12:45 UTC (permalink / raw)
To: notmuch
David Bremner <david@tethera.net> writes:
> 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.
applied to master
d
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2021-06-25 12:46 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-06-19 0:59 [PATCH 1/2] lib: write talloc report in notmuch_database_destroy David Bremner
2021-06-19 0:59 ` [PATCH 2/2] lib/config: fix memory leak David Bremner
2021-06-25 12:46 ` David Bremner
2021-06-19 13:55 ` [PATCH 1/2] lib: write talloc report in notmuch_database_destroy David Bremner
2021-06-25 12:45 ` David Bremner
Code repositories for project(s) associated with this public inbox
https://yhetil.org/notmuch.git/
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).