| 139 | } |
| 140 | |
| 141 | PCWSTR LocationManager::GetPath(PCWSTR path) const { |
| 142 | if (path == nullptr || *path == 0) |
| 143 | path = _path; |
| 144 | |
| 145 | _path = path; |
| 146 | if (path == nullptr || *path == 0) |
| 147 | return nullptr; |
| 148 | |
| 149 | return path; |
| 150 | } |
no outgoing calls
no test coverage detected