]> Cypherpunks repositories - gostls13.git/commit
os: don't request read access from CreateFile in Stat
authorDamien Neil <dneil@google.com>
Mon, 14 Nov 2022 18:21:51 +0000 (10:21 -0800)
committerDamien Neil <dneil@google.com>
Mon, 14 Nov 2022 19:44:44 +0000 (19:44 +0000)
commit24fc64028c0faa7fcbdae2bf2a2ded825713c982
treeec0ae1582310fca03a5b05e4e6132acbcaa8638c
parent6234e467e50b35e967b9a91f8b6fa01fa6691bfa
os: don't request read access from CreateFile in Stat

CL 448897 changed os.Stat to request GENERIC_READ access when using
CreateFile to examine a file. This is unnecessary; access flags of 0
will permit examining file metadata even if the file isn't readable.
Revert to the old behavior here.

For #56217

Change-Id: I09220b3bbee304bd89f4a94ec9b0af42042b7773
Reviewed-on: https://go-review.googlesource.com/c/go/+/450296
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Bryan Mills <bcmills@google.com>
Run-TryBot: Bryan Mills <bcmills@google.com>
Run-TryBot: Quim Muntal <quimmuntal@gmail.com>
src/os/stat_windows.go