From 885f5974cdf65b59415837ae97f5a14ef1350670 Mon Sep 17 00:00:00 2001 From: Kacper Date: Tue, 9 Dec 2025 19:20:15 +0100 Subject: feat: add gzip and new headers --- lib/libc/uio/readv.c | 1 - lib/libc/uio/writev.c | 1 - 2 files changed, 2 deletions(-) (limited to 'lib/libc/uio') diff --git a/lib/libc/uio/readv.c b/lib/libc/uio/readv.c index 8a2d9216..baca678d 100644 --- a/lib/libc/uio/readv.c +++ b/lib/libc/uio/readv.c @@ -45,7 +45,6 @@ ssize_t readv(int fd, const struct iovec *iov, int iovcnt) tmp.iov_base = (char *)tmp.iov_base + remaining; tmp.iov_len -= remaining; memcpy(local, &tmp, sizeof(tmp)); - remaining = 0; break; } } diff --git a/lib/libc/uio/writev.c b/lib/libc/uio/writev.c index 4e304336..6f629ba0 100644 --- a/lib/libc/uio/writev.c +++ b/lib/libc/uio/writev.c @@ -39,7 +39,6 @@ ssize_t writev(int fd, const struct iovec *iov, int iovcnt) tmp.iov_base = (char *)tmp.iov_base + remaining; tmp.iov_len -= remaining; memcpy(local, &tmp, sizeof(tmp)); - remaining = 0; break; } } -- cgit v1.2.3