Kernel: Use Userspace<T> for the getsockname syscall

This commit is contained in:
Brian Gianforcaro 2020-08-07 00:03:37 -07:00 committed by Andreas Kling
commit 8fa46bcb7d
Notes: sideshowbarker 2024-07-19 04:09:58 +09:00
3 changed files with 4 additions and 4 deletions

View file

@ -320,8 +320,8 @@ struct SC_setsockopt_params {
struct SC_getsockname_params {
int sockfd;
sockaddr* addr;
socklen_t* addrlen;
Userspace<sockaddr*> addr;
Userspace<socklen_t*> addrlen;
};
struct SC_getpeername_params {