]> Cypherpunks repositories - gostls13.git/commit
[release-branch.go1.20] internal/testpty: fix error handling
authorHeschi Kreinick <heschi@google.com>
Wed, 25 Jan 2023 17:48:54 +0000 (12:48 -0500)
committerCarlos Amedee <carlos@golang.org>
Wed, 8 Mar 2023 21:46:57 +0000 (21:46 +0000)
commit4df95d5145ffea7a7aa6a8e785038f41185ee166
treeab6e7580a42c50a477875b296b53668226ecdb62
parentaee9a19c559da6fd258a8609556d89f6fad2a6d8
[release-branch.go1.20] internal/testpty: fix error handling

When calling a c library function, you discover that an error has
occurred, typically by looking at the return value of the function. Only
after that can you use errno to figure out the cause of the error.

Nothing about cgo changes that story -- you still have to look at the
result before checking the error that represents errno. If not you can
get false errors if the function happens to leak a non-zero errno.

Fix testpty to check errors correctly.

Fixes #58942.

Change-Id: Idb95f8dd6a8ed63f653190c2e722e742cf50542b
Reviewed-on: https://go-review.googlesource.com/c/go/+/463397
Run-TryBot: Heschi Kreinick <heschi@google.com>
Reviewed-by: Michael Pratt <mpratt@google.com>
Auto-Submit: Heschi Kreinick <heschi@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
(cherry picked from commit f85c282a18bbe7197ba645fff58ba5e0065962ca)
Reviewed-on: https://go-review.googlesource.com/c/go/+/474616
Reviewed-by: Carlos Amedee <carlos@golang.org>
src/internal/testpty/pty_cgo.go