| 134 | } |
| 135 | |
| 136 | void memleak_scan_obj(struct htable *memtable, const void *ptr) |
| 137 | { |
| 138 | memleak_ptr(memtable, ptr); |
| 139 | scan_for_pointers(memtable, ptr, tal_bytelen(ptr)); |
| 140 | } |
| 141 | |
| 142 | void memleak_scan_list_head(struct htable *memtable, const struct list_head *l) |
| 143 | { |
no test coverage detected