| delorie.com/archives/browse.cgi | search |
| X-Recipient: | archive-cygwin AT delorie DOT com |
| X-SWARE-Spam-Status: | No, hits=2.0 required=5.0 tests=AWL,BAYES_50,J_CHICKENPOX_33,J_CHICKENPOX_43,SPF_PASS |
| X-Spam-Check-By: | sourceware.org |
| Message-ID: | <4A1EAD61.5010308@sidefx.com> |
| Date: | Thu, 28 May 2009 11:27:29 -0400 |
| From: | Edward Lam <edward AT sidefx DOT com> |
| User-Agent: | Thunderbird 2.0.0.21 (Windows/20090302) |
| MIME-Version: | 1.0 |
| To: | cygwin AT cygwin DOT com |
| Subject: | Re: 1.7.0-48: [BUG] Passing characters above 128 from bash command line |
| References: | <200905281541 DOT 33404 DOT michael DOT renner AT gmx DOT de> <20090528145106 DOT GA23970 AT ednor DOT casa DOT cgf DOT cx> <4A1EAA75 DOT 7030203 AT sidefx DOT com> <4A1EAAED DOT 1060702 AT cygwin DOT com> |
| In-Reply-To: | <4A1EAAED.1060702@cygwin.com> |
| X-IsSubscribed: | yes |
| Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm |
| List-Id: | <cygwin.cygwin.com> |
| List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com> |
| List-Archive: | <http://sourceware.org/ml/cygwin/> |
| List-Post: | <mailto:cygwin AT cygwin DOT com> |
| List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/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 |
Hi Larry,
> This sounds allot like this report to me:
>
> <http://cygwin.com/ml/cygwin/2009-05/msg00611.html>
I don't think it's the same bug because if I replace copyright.txt with
a single printable character (eg. c), then it works.
Regards,
-Edward
Larry Hall (Cygwin) wrote:
> Edward Lam wrote:
>> Hi Cygwin 1.7 developers,
>>
>> I think I've encountered bug in cygwin 1.7.0-48 on WinXP 32-bit. It
>> seems that passing a character on the command line (from either
>> ash.exe or bash.exe) that is greater than 127 to a native win32
>> process results in arguments being truncated.
>>
>> Hopefully you can reproduce and fix. Steps to reproduce outlined below.
>>
>> $ cat bug.c
>> #include <stdio.h>
>>
>> int main(int argc, char *argv[])
>> {
>> int i;
>> for (i = 0; i < argc; i++)
>> printf("%d: %s\n", i, argv[i]);
>> return 0;
>> }
>>
>> $ xxd copyright.txt
>> 0000000: a9 .
>>
>> $ $TOOLROOT/bin/cl -I$TOOLROOT/include bug.c /link
>> /libpath:$TOOLROOT/lib /libpath:$TOOLROOT/PlatformSDK/lib
>>
>> Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 13.10.3077 for
>> 80x86
>> Copyright (C) Microsoft Corporation 1984-2002. All rights reserved.
>>
>> bug.c
>> Microsoft (R) Incremental Linker Version 7.10.3077
>> Copyright (C) Microsoft Corporation. All rights reserved.
>>
>> /out:bug.exe
>> /libpath:e:/msdev7/vc7/lib
>> /libpath:e:/msdev7/vc7/PlatformSDK/lib
>> bug.obj
>>
>> $ ./bug "before `cat copyright.txt` after"
>> 0: E:\cygwin1.7\tmp\bug.exe
>> 1: before
>>
>> Notice that for argument 1, we never see the contents of copyright.txt
>> and the text after it, "after" is never passed to the win32 native
>> application.
>
> This sounds allot like this report to me:
>
> <http://cygwin.com/ml/cygwin/2009-05/msg00611.html>
>
> No?
>
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |