| delorie.com/archives/browse.cgi | search |
| Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm |
| List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com> |
| List-Archive: | <http://sources.redhat.com/ml/cygwin/> |
| List-Post: | <mailto:cygwin AT cygwin DOT com> |
| List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sources.redhat.com/ml/#faqs> |
| Sender: | cygwin-owner AT cygwin DOT com |
| Mail-Followup-To: | cygwin AT cygwin DOT com |
| Delivered-To: | mailing list cygwin AT cygwin DOT com |
| Date: | Wed, 27 Nov 2002 19:01:13 -0500 |
| From: | Christopher Faylor <cgf AT redhat DOT com> |
| To: | cygwin AT cygwin DOT com |
| Subject: | Re: Incorrect return values from sendto |
| Message-ID: | <20021128000113.GL17798@redhat.com> |
| Reply-To: | cygwin AT cygwin DOT com |
| Mail-Followup-To: | cygwin AT cygwin DOT com |
| References: | <Pine DOT LNX DOT 4 DOT 44 DOT 0211252319530 DOT 8626-100000 AT berenice DOT lee> |
| Mime-Version: | 1.0 |
| In-Reply-To: | <Pine.LNX.4.44.0211252319530.8626-100000@berenice.lee> |
| User-Agent: | Mutt/1.5.1i |
On Wed, Nov 27, 2002 at 11:18:26PM +0100, Mikael Ylikoski wrote:
>There is a bug in sendto in cygwin-1.3.16 which can cause an uninitialized
>value to be returned.
>
>--- fhandler_socket.cc.orig Mon Nov 25 23:15:37 2002
>+++ fhandler_socket.cc Mon Nov 25 23:16:32 2002
>@@ -862,9 +862,9 @@
> DWORD ret;
>
> if (!winsock2_active)
>- res = ::sendto (get_socket (), (const char *) ptr, len,
>- flags & MSG_WINMASK,
>- (to ? (const struct sockaddr *) &sin : NULL), tolen);
>+ res = ret = ::sendto (get_socket (), (const char *) ptr, len,
>+ flags & MSG_WINMASK,
>+ (to ? (const struct sockaddr *) &sin : NULL), tolen);
> else
> {
> WSABUF wsabuf = { len, (char *) ptr };
Looks like you're right. Nice catch.
I've checked in a fix. It will be in 1.3.17. You got this in just in
time.
Thanks.
cgf
--
Please do not send me personal email with cygwin questions or observations.
Use the resources at http://cygwin.com/ .
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |