| 174 | } |
| 175 | |
| 176 | static bool handle_strmap(const char *member, void *p, void *memtable_) |
| 177 | { |
| 178 | struct htable *memtable = memtable_; |
| 179 | |
| 180 | /* membername may *not* be a tal ptr, but it can be! */ |
| 181 | memleak_ptr(memtable, member); |
| 182 | memleak_scan_obj(memtable, p); |
| 183 | |
| 184 | /* Keep going */ |
| 185 | return true; |
| 186 | } |
| 187 | |
| 188 | /* FIXME: If strmap used tal, this wouldn't be necessary! */ |
| 189 | void memleak_scan_strmap_(struct htable *memtable, const struct strmap *m) |
nothing calls this directly
no test coverage detected