aboutsummaryrefslogtreecommitdiff
path: root/src/codegen
diff options
context:
space:
mode:
authorRyan Liptak <squeek502@hotmail.com>2023-08-11 14:19:59 -0700
committerRyan Liptak <squeek502@hotmail.com>2023-08-11 18:58:40 -0700
commit3f9294c73501f55bcba1fe8b5da1ad2f2b0af9e5 (patch)
tree86fce350a6c04eeffbc28f9860865090e8115256 /src/codegen
parentac95cfe4496a5504b42bf37b02f34eff390fe956 (diff)
downloadzig-3f9294c73501f55bcba1fe8b5da1ad2f2b0af9e5.tar.gz
zig-3f9294c73501f55bcba1fe8b5da1ad2f2b0af9e5.zip
Windows: Fix `TooManyParentDirs` handling for paths that shouldn't be cwd-relative
Previously, a relative path like `..` would: - Attempt to be normalized (i.e. remove . and .. without any path resolution), but would error with TooManyParentDirs - This would make wToPrefixedFileW run it through `RtlGetFullPathName_U` to do the necessary path resolution, but `RtlGetFullPathName_U` always resolves relative paths relative to the CWD Instead, when TooManyParentDirs occurs, we now look up the path of the passed in `dir` (if it's non-null) and append the relative path to it before giving it to `RtlGetFullPathName_U`. If `dir` is null, then we just give it RtlGetFullPathName_U directly and let it resolve it relative to the CWD. Closes #16779
Diffstat (limited to 'src/codegen')
0 files changed, 0 insertions, 0 deletions