summaryrefslogtreecommitdiff
path: root/dev-ml/core_unix/files/core_unix-0.16.0-musl.patch
blob: e37ad2f8454ac3b7aae78582b4736b28712dc7b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
--- a/bigstring_unix/src/bigstring_unix_stubs.c	2023-07-08 18:01:05.614573701 +0200
+++ b/bigstring_unix/src/bigstring_unix_stubs.c	2023-07-08 18:01:20.505598860 +0200
@@ -743,7 +743,7 @@
   int count = Int_val(v_count);
   size_t total_len = 0;
   struct iovec *iovecs = copy_iovecs(&total_len, v_iovecs, count);
-  struct msghdr msghdr = {NULL, 0, NULL, 0, NULL, 0, 0};
+  struct msghdr msghdr = {NULL};
   ssize_t ret;
   if (total_len > THREAD_IO_CUTOFF || contains_mmapped(v_iovecs, count)) {
     Begin_roots1(v_iovecs);