From: qmuntal Date: Thu, 7 Dec 2023 20:45:57 +0000 (+0100) Subject: doc: document that os.Stat follows all link reparse points on Windows X-Git-Tag: go1.22rc1~52 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=46ea4ab5cb87e9e5d443029f5f1a4bba012804d3;p=gostls13.git doc: document that os.Stat follows all link reparse points on Windows For #61422. Change-Id: I2bb59a1ae38c40368343414a6077bb09c1675a6b Reviewed-on: https://go-review.googlesource.com/c/go/+/548315 Reviewed-by: Bryan Mills LUCI-TryBot-Result: Go LUCI Reviewed-by: Cherry Mui Reviewed-by: Alex Brainman --- diff --git a/doc/go1.22.html b/doc/go1.22.html index bf39db39e5..b363aaf14b 100644 --- a/doc/go1.22.html +++ b/doc/go1.22.html @@ -635,7 +635,10 @@ defer func() {
os

- TODO: https://go.dev/cl/516555: os: follow all name surrogate reparse points in Stat on Windows + On Windows, the Stat function now follows all reparse points + that link to another named entity in the system. + It was previously only following IO_REPARSE_TAG_SYMLINK and + IO_REPARSE_TAG_MOUNT_POINT reparse points.