diff --git a/doc/go1.14.html b/doc/go1.14.html index eb35fa8cae9..478035360a8 100644 --- a/doc/go1.14.html +++ b/doc/go1.14.html @@ -77,6 +77,18 @@ Do not send CLs removing the interior tags from such phrases. (Data Execution Prevention) enabled.
+
+ On Windows, creating a file
+ via os.OpenFile
with
+ the os.O_CREATE
flag, or
+ via syscall.Open
with
+ the syscall.O_CREAT
+ flag, will now create the file as read-only if the
+ bit 0o200
(owner write permission) is not set in the
+ permission argument. This makes the behavior on Windows more like
+ that on Unix systems.
+