| 284 | |
| 285 | |
| 286 | static void free_path_key_entry( void * xentry, void * const data ) |
| 287 | { |
| 288 | path_key_entry * const entry = (path_key_entry *)xentry; |
| 289 | object_free( entry->path ); |
| 290 | object_free( entry->key ); |
| 291 | } |
| 292 | |
| 293 | |
| 294 | void path_done( void ) |
nothing calls this directly
no test coverage detected