From b414d044ff6d24ff23531e64d45ad775bc6c96bb Mon Sep 17 00:00:00 2001 From: qiulaidongfeng <2645477756@qq.com> Date: Tue, 27 Feb 2024 13:54:42 +0000 Subject: [PATCH] os: remove if nil!=nil in openFileNolog Change-Id: I21cecc13570f3b61f3d6c4fede18dc63ddca1b69 GitHub-Last-Rev: 3c351e4aa84780d682fd7595ac2091defdcdfc62 GitHub-Pull-Request: golang/go#65958 Reviewed-on: https://go-review.googlesource.com/c/go/+/567355 Auto-Submit: Ian Lance Taylor Reviewed-by: Ian Lance Taylor LUCI-TryBot-Result: Go LUCI Reviewed-by: Bryan Mills Reviewed-by: Quim Muntal --- src/os/file_windows.go | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/os/file_windows.go b/src/os/file_windows.go index 51dbc355f8..22fd9e5d40 100644 --- a/src/os/file_windows.go +++ b/src/os/file_windows.go @@ -115,11 +115,7 @@ func openFileNolog(name string, flag int, perm FileMode) (*File, error) { } return nil, &PathError{Op: "open", Path: name, Err: e} } - f, e := newFile(r, name, "file"), nil - if e != nil { - return nil, &PathError{Op: "open", Path: name, Err: e} - } - return f, nil + return newFile(r, name, "file"), nil } func (file *file) close() error { -- 2.48.1