[libc-commits] [libc] [libc] Fix sendmsg iovec unpoisoning (PR #115057)
via libc-commits
libc-commits at lists.llvm.org
Tue Nov 5 12:33:56 PST 2024
================
@@ -40,9 +40,11 @@ LLVM_LIBC_FUNCTION(ssize_t, recvmsg,
}
// Unpoison the msghdr, as well as all its components.
+ MSAN_UNPOISON(msg, sizeof(struct msghdr));
----------------
lntue wrote:
nit: is there any name conflict with `msghdr`? If not just use `msghdr` instead of `struct msghdr` in this file.
https://github.com/llvm/llvm-project/pull/115057
More information about the libc-commits
mailing list