| 304 | return ROOT_UNCERTAIN; |
| 305 | } |
| 306 | struct stat st; |
| 307 | if (stat(root_path, &st) == 0) { |
| 308 | /* Exists but is no longer a directory → the root directory is gone. */ |
| 309 | return S_ISDIR(st.st_mode) ? ROOT_PRESENT : ROOT_MISSING; |
no outgoing calls
no test coverage detected