Browse Source

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

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
travis-experimental
Rusty Russell 4 years ago
parent
commit
bba4fd0d70
  1. 2
      common/setup.c

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

Loading…
Cancel
Save