From bba4fd0d7040163fe3e98477ff7233361acda423 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Wed, 23 Sep 2020 11:07:04 +0930 Subject: [PATCH] common: don't suppress leak detection for libwally allocations. Signed-off-by: Rusty Russell --- common/setup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/setup.c b/common/setup.c index f0d5c0d5f..ad971b368 100644 --- a/common/setup.c +++ b/common/setup.c @@ -7,7 +7,7 @@ static void *wally_tal(size_t size) { - return tal_arr_label(wally_tal_ctx, u8, size, "wally_notleak"); + return tal_arr_label(wally_tal_ctx, u8, size, "wally_tal"); } static void wally_free(void *ptr)