aboutsummaryrefslogtreecommitdiff
path: root/src/encoding/json/encode.go
diff options
context:
space:
mode:
authorFazlul Shahriar <fshahriar@gmail.com>2019-11-09 16:02:46 -0500
committerBrad Fitzpatrick <bradfitz@golang.org>2019-11-09 22:14:01 +0000
commit78d4560793de65e21199d3c80e9c901833bdaeba (patch)
tree38ef7fe0f28153a5fb066be3f8cb4d6bb42bed82 /src/encoding/json/encode.go
parent29cfb4d3c3a97b6f426d1b899234da905be699aa (diff)
downloadgo-78d4560793de65e21199d3c80e9c901833bdaeba.tar.xz
cmd/go/internal/lockedfile, os: fix O_CREATE flag on Plan 9
os.OpenFile was assuming that a failed syscall.Open means the file does not exist and it tries to create it. However, syscall.Open may have failed for some other reason, such as failing to lock a os.ModeExclusive file. We change os.OpenFile to only create the file if the error indicates that the file doesn't exist. Remove skip of TestTransform test, which was failing because sometimes syscall.Open would fail due to the file being locked, but the syscall.Create would succeed because the file is no longer locked. The create was truncating the file. Fixes #35471 Change-Id: I06583b5f8ac33dc90a51cc4fb64f2d8d9c0c2113 Reviewed-on: https://go-review.googlesource.com/c/go/+/206299 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
Diffstat (limited to 'src/encoding/json/encode.go')
0 files changed, 0 insertions, 0 deletions