FIXME: If uintmap used tal, this wouldn't be necessary! */
| 165 | |
| 166 | /* FIXME: If uintmap used tal, this wouldn't be necessary! */ |
| 167 | void memleak_scan_intmap_(struct htable *memtable, const struct intmap *m) |
| 168 | { |
| 169 | void *p; |
| 170 | intmap_index_t i; |
| 171 | |
| 172 | for (p = intmap_first_(m, &i); p; p = intmap_after_(m, &i)) |
| 173 | memleak_scan_obj(memtable, p); |
| 174 | } |
| 175 | |
| 176 | static bool handle_strmap(const char *member, void *p, void *memtable_) |
| 177 | { |
nothing calls this directly
no test coverage detected