mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
LibCore: Fix struct msghdr initialization
The previous approach could leave behind uninitialized fields on platforms which have additional fields in this structure (e.g. padding fields on musl libc).
This commit is contained in:
parent
a06b277471
commit
c7f8d74c1c
Notes:
sideshowbarker
2024-07-17 09:47:09 +09:00
Author: https://github.com/ddevault 🔰 Commit: https://github.com/SerenityOS/serenity/commit/c7f8d74c1c Pull-request: https://github.com/SerenityOS/serenity/pull/16467 Reviewed-by: https://github.com/timschumi
1 changed files with 10 additions and 18 deletions
|
@ -605,15 +605,11 @@ ErrorOr<int> LocalSocket::receive_fd(int flags)
|
|||
.iov_base = &c,
|
||||
.iov_len = 1,
|
||||
};
|
||||
struct msghdr msg {
|
||||
.msg_name = NULL,
|
||||
.msg_namelen = 0,
|
||||
.msg_iov = &iov,
|
||||
.msg_iovlen = 1,
|
||||
.msg_control = cmsgu.control,
|
||||
.msg_controllen = sizeof(cmsgu.control),
|
||||
.msg_flags = 0,
|
||||
};
|
||||
struct msghdr msg = {};
|
||||
msg.msg_iov = &iov;
|
||||
msg.msg_iovlen = 1;
|
||||
msg.msg_control = cmsgu.control;
|
||||
msg.msg_controllen = sizeof(cmsgu.control);
|
||||
TRY(Core::System::recvmsg(m_helper.fd(), &msg, 0));
|
||||
|
||||
struct cmsghdr* cmsg = CMSG_FIRSTHDR(&msg);
|
||||
|
@ -652,15 +648,11 @@ ErrorOr<void> LocalSocket::send_fd(int fd)
|
|||
char control[CMSG_SPACE(sizeof(int))];
|
||||
} cmsgu {};
|
||||
|
||||
struct msghdr msg {
|
||||
.msg_name = NULL,
|
||||
.msg_namelen = 0,
|
||||
.msg_iov = &iov,
|
||||
.msg_iovlen = 1,
|
||||
.msg_control = cmsgu.control,
|
||||
.msg_controllen = sizeof(cmsgu.control),
|
||||
.msg_flags = 0,
|
||||
};
|
||||
struct msghdr msg = {};
|
||||
msg.msg_iov = &iov;
|
||||
msg.msg_iovlen = 1;
|
||||
msg.msg_control = cmsgu.control;
|
||||
msg.msg_controllen = sizeof(cmsgu.control);
|
||||
|
||||
struct cmsghdr* cmsg = CMSG_FIRSTHDR(&msg);
|
||||
cmsg->cmsg_len = CMSG_LEN(sizeof(int));
|
||||
|
|
Loading…
Reference in a new issue