| 193 | } |
| 194 | |
| 195 | static bool handle_strmap(const char *member, void *p, void *memtable_) |
| 196 | { |
| 197 | struct htable *memtable = memtable_; |
| 198 | |
| 199 | /* membername may *not* be a tal ptr, but it can be! */ |
| 200 | memleak_ptr(memtable, member); |
| 201 | memleak_scan_obj(memtable, p); |
| 202 | |
| 203 | /* Keep going */ |
| 204 | return true; |
| 205 | } |
| 206 | |
| 207 | /* FIXME: If strmap used tal, this wouldn't be necessary! */ |
| 208 | void memleak_scan_strmap_(struct htable *memtable, const struct strmap *m) |
nothing calls this directly
no test coverage detected