| 4699 | } |
| 4700 | |
| 4701 | static bool win_parent_valid(const wchar_t *parent) { |
| 4702 | DWORD attributes = GetFileAttributesW(parent); |
| 4703 | return attributes != INVALID_FILE_ATTRIBUTES && (attributes & FILE_ATTRIBUTE_DIRECTORY) != 0 && |
| 4704 | (attributes & FILE_ATTRIBUTE_REPARSE_POINT) == 0; |
| 4705 | } |
| 4706 | |
| 4707 | static wchar_t *win_default_runtime_parent(void) { |
| 4708 | wchar_t path[MAX_PATH]; |
no outgoing calls
no test coverage detected