We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 689032d commit d48faf1Copy full SHA for d48faf1
1 file changed
lib/std/os/windows.zig
@@ -1310,6 +1310,8 @@ pub fn GetFinalPathNameByHandle(
1310
// Wine seems to return NT namespaced paths starting with \??\ from QueryObjectName
1311
// (e.g. `\??\Z:\some\path\to\a\file.txt`), in which case we can just strip the
1312
// prefix to turn it into an absolute path.
1313
+ // https://github.com/ziglang/zig/issues/26029
1314
+ // https://bugs.winehq.org/show_bug.cgi?id=39569
1315
return ntToWin32Namespace(final_path, out_buffer) catch |err| switch (err) {
1316
error.NotNtPath => return error.Unexpected,
1317
error.NameTooLong => |e| return e,
0 commit comments