1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:48:10 +00:00

Kernel: Use Userspace<T> for the getpeername syscall

This commit is contained in:
Brian Gianforcaro 2020-08-07 00:00:17 -07:00 committed by Andreas Kling
parent 0db669a9d2
commit dc75ea9fc2
3 changed files with 11 additions and 4 deletions

View file

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