| 193 | } |
| 194 | |
| 195 | static void leak_detect_timeout(struct leak_detect *leak_detect) |
| 196 | { |
| 197 | /* We actually *do* leak the leak_detect, but cmd is about |
| 198 | * to exit. */ |
| 199 | notleak(tal_steal(NULL, leak_detect)); |
| 200 | finish_report(leak_detect); |
| 201 | leak_detect->cmd = NULL; |
| 202 | } |
| 203 | |
| 204 | static void leak_detect_req_done(const struct subd_req *req, |
| 205 | struct leak_detect *leak_detect) |
nothing calls this directly
no test coverage detected