diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2023-07-08 18:03:20 +0200 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2023-07-08 18:34:45 +0200 |
commit | 5ca12e07cbcd48960ea266e47df1c2702d6f038a (patch) | |
tree | 8c9f192e9e6936868c67bf4e636a119d5506c6e8 /dev-ml/core_unix/files | |
parent | dev-ml/timezone: add 0.16.0 (diff) | |
download | gentoo-5ca12e07cbcd48960ea266e47df1c2702d6f038a.tar.gz gentoo-5ca12e07cbcd48960ea266e47df1c2702d6f038a.tar.bz2 gentoo-5ca12e07cbcd48960ea266e47df1c2702d6f038a.zip |
dev-ml/core_unix: add 0.16.0
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
Diffstat (limited to 'dev-ml/core_unix/files')
-rw-r--r-- | dev-ml/core_unix/files/core_unix-0.16.0-musl.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/dev-ml/core_unix/files/core_unix-0.16.0-musl.patch b/dev-ml/core_unix/files/core_unix-0.16.0-musl.patch new file mode 100644 index 000000000000..e37ad2f8454a --- /dev/null +++ b/dev-ml/core_unix/files/core_unix-0.16.0-musl.patch @@ -0,0 +1,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); |