1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:57:35 +00:00

Kernel: recvfrom() should treat the address arguments as outparams.

This commit is contained in:
Andreas Kling 2019-03-13 14:47:21 +01:00
parent b59d588c04
commit 19a51132f5
10 changed files with 32 additions and 28 deletions

View file

@ -146,8 +146,8 @@ struct SC_recvfrom_params {
void* buffer;
size_t buffer_length;
int flags;
const void* addr; // const sockaddr*
size_t addr_length; // socklen_t
void* addr; // sockaddr*
void* addr_length; // socklen_t*
};
struct SC_getsockopt_params {