common: don't suppress leak detection for libwally allocations.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
Rusty Russell 2020-09-23 11:07:04 +09:30
parent 161cc3e840
commit bba4fd0d70

View File

@ -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)