| 912 | |
| 913 | #if DEVELOPER |
| 914 | static void memleak_mark_globals(struct plugin *p, struct htable *memtable) |
| 915 | { |
| 916 | memleak_scan_obj(memtable, outgoing_commands); |
| 917 | memleak_scan_obj(memtable, incoming_commands); |
| 918 | memleak_scan_obj(memtable, master_rune); |
| 919 | memleak_scan_htable(memtable, &usage_table.raw); |
| 920 | if (rune_counter) |
| 921 | memleak_scan_obj(memtable, rune_counter); |
| 922 | } |
| 923 | #endif |
| 924 | |
| 925 | static const char *init(struct plugin *p, |
nothing calls this directly
no test coverage detected