Files
gcc/libgo/go
Ian Lance Taylor 284e13279e syscall: pass correct pointer to system call in recvmsgRaw
The code in recvmsgRaw, introduced in https://go.dev/cl/384695,
incorrectly passed &rsa to the recvmsg system call.
But in recvmsgRaw rsa is already a pointer passed by the caller.
This change passes the correct pointer.

I'm guessing that this didn't show up in the testsuite because
we run the tests in short mode.

Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/685177
2025-07-08 15:01:25 -07:00
..