From 35d559eb18d779822074a0781585642028e61ed8 Mon Sep 17 00:00:00 2001 From: David Bremner Date: Fri, 18 Jun 2021 21:59:44 -0300 Subject: [PATCH] lib/config: fix memory leak 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.43.0