Hash table foreach callback to free state entries */
| 862 | |
| 863 | /* Hash table foreach callback to free state entries */ |
| 864 | static void free_state_entry(const char *key, void *val, void *ud) { |
| 865 | (void)key; |
| 866 | (void)ud; |
| 867 | state_free(val); |
| 868 | } |
| 869 | |
| 870 | /* ── Watcher lifecycle ──────────────────────────────────────────── */ |
| 871 |
nothing calls this directly
no test coverage detected