| 677 | } |
| 678 | |
| 679 | static bool runtime_parent_valid(const char *path) { |
| 680 | struct stat status; |
| 681 | return path && path[0] != '\0' && lstat(path, &status) == 0 && S_ISDIR(status.st_mode); |
| 682 | } |
| 683 | |
| 684 | static bool private_runtime_snapshot(int fd, const char *path, bool require_empty_acl, |
| 685 | struct stat *status_out) { |
no outgoing calls
no test coverage detected