doc/go1.14.html | 12 ++++++++++++ diff --git a/doc/go1.14.html b/doc/go1.14.html index eb35fa8cae9d4671f3839e5f715e4d194b081268..478035360a8c96b5bcafc2c5ea3a019ecc4da127 100644 --- a/doc/go1.14.html +++ b/doc/go1.14.html @@ -77,6 +77,18 @@ have DEP (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. +

+

WebAssembly