| author | |
| committer | |
| log | 68ed787751ed36af3db0c52031741a5c31413034 |
| tree | e08dbc90e1c0d3840ca13a5fe276f62a14c1954a |
| parent | eb5276c94eaab238551fdae9a2e77b0133e31cfb |
1 files changed, 2 insertions(+), 2 deletions(-)
lib/std/os/windows.zig+2-2| ... | ... | @@ -836,14 +836,14 @@ pub fn ReadLink(dir: ?HANDLE, sub_path_w: []const u16, out_buffer: []u8) ReadLin |
| 836 | 836 | |
| 837 | 837 | const rc = ntdll.NtCreateFile( |
| 838 | 838 | &result_handle, |
| 839 | FILE_READ_ATTRIBUTES, | |
| 839 | FILE_READ_ATTRIBUTES | SYNCHRONIZE, | |
| 840 | 840 | &attr, |
| 841 | 841 | &io, |
| 842 | 842 | null, |
| 843 | 843 | FILE_ATTRIBUTE_NORMAL, |
| 844 | 844 | FILE_SHARE_READ, |
| 845 | 845 | FILE_OPEN, |
| 846 | FILE_OPEN_REPARSE_POINT, | |
| 846 | FILE_OPEN_REPARSE_POINT | FILE_SYNCHRONOUS_IO_NONALERT, | |
| 847 | 847 | null, |
| 848 | 848 | 0, |
| 849 | 849 | ); |