| 3063 | } |
| 3064 | |
| 3065 | static void openingd_memleak_req_done(struct subd *open_daemon, |
| 3066 | const u8 *msg, const int *fds UNUSED, |
| 3067 | struct leak_detect *leaks) |
| 3068 | { |
| 3069 | bool found_leak; |
| 3070 | |
| 3071 | if (!fromwire_openingd_dev_memleak_reply(msg, &found_leak)) |
| 3072 | fatal("Bad opening_dev_memleak"); |
| 3073 | |
| 3074 | if (found_leak) |
| 3075 | report_subd_memleak(leaks, open_daemon); |
| 3076 | } |
| 3077 | |
| 3078 | static void dualopend_memleak_req_done(struct subd *dualopend, |
| 3079 | const u8 *msg, const int *fds UNUSED, |
nothing calls this directly
no test coverage detected