Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2006-06-30 15:04:13 +0400
committerCorinna Vinschen <corinna@vinschen.de>2006-06-30 15:04:13 +0400
commite0d8706d8f36e8cb323efe06431757f4384784cc (patch)
tree7b0229e2f1a59ac485f196591af2407feff71427 /winsup/cygwin/net.cc
parent8b46f03c8da80400de53027270a23fbcfa472730 (diff)
* net.cc (cygwin_sendto): Allow zero-sized packets.
(cygwin_sendmsg): Ditto.
Diffstat (limited to 'winsup/cygwin/net.cc')
-rw-r--r--winsup/cygwin/net.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/winsup/cygwin/net.cc b/winsup/cygwin/net.cc
index b8213081f..5ec30f0e8 100644
--- a/winsup/cygwin/net.cc
+++ b/winsup/cygwin/net.cc
@@ -634,7 +634,7 @@ cygwin_sendto (int fd, const void *buf, int len, int flags,
myfault efault;
if (efault.faulted (EFAULT) || !fh)
res = -1;
- else if ((res = len) != 0)
+ else
res = fh->sendto (buf, len, flags, to, tolen);
syscall_printf ("%d = sendto (%d, %p, %d, %x, %p, %d)",
@@ -2295,8 +2295,7 @@ cygwin_sendmsg (int fd, const struct msghdr *msg, int flags)
else
{
res = check_iovec_for_write (msg->msg_iov, msg->msg_iovlen);
- if (res > 0)
- res = fh->sendmsg (msg, flags, res); // res == iovec tot
+ res = fh->sendmsg (msg, flags, res); // res == iovec tot
}
syscall_printf ("%d = sendmsg (%d, %p, %x)", res, fd, msg, flags);