From fe86395e7cfed32e224c44b13c819d9fb8824853 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Sat, 26 Feb 2022 14:36:35 +1030 Subject: [PATCH] memleak: restore functionality accidentally removed. Accidentally removed in 6c9b75275191f0efdf1036ec5b26aa334662462b. Signed-off-by: Rusty Russell --- common/memleak.c | 1 + 1 file changed, 1 insertion(+) diff --git a/common/memleak.c b/common/memleak.c index c436cdc7d..bdff9db08 100644 --- a/common/memleak.c +++ b/common/memleak.c @@ -106,6 +106,7 @@ static void children_into_htable(const void *exclude1, const void *exclude2, if (streq(name, "tmpctx")) continue; } + htable_add(memtable, hash_ptr(i, NULL), i); children_into_htable(exclude1, exclude2, memtable, i); } }