checker: check option fn returning error (fix #17423) (#17438)

This commit is contained in:
yuyi 2023-03-02 21:49:50 +08:00 committed by GitHub
parent 8f7c35552d
commit 17000ef7b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
49 changed files with 129 additions and 106 deletions

View file

@ -77,7 +77,7 @@ mut:
}
[inline]
fn setup_sock(fd int) ? {
fn setup_sock(fd int) ! {
flag := 1
if C.setsockopt(fd, C.IPPROTO_TCP, C.TCP_NODELAY, &flag, sizeof(int)) < 0 {
return error('setup_sock.setup_sock failed')