| delorie.com/archives/browse.cgi | search |
| X-Recipient: | archive-cygwin AT delorie DOT com |
| X-SWARE-Spam-Status: | No, hits=-1.0 required=5.0 tests=AWL,BAYES_00,SARE_MSGID_LONG40,SPF_PASS |
| X-Spam-Check-By: | sourceware.org |
| MIME-Version: | 1.0 |
| In-Reply-To: | <loom.20100104T233234-168@post.gmane.org> |
| References: | <f519c7c31001041418q1c24bae9t237ee637ed20c0f6 AT mail DOT gmail DOT com> <f519c7c31001041425j4d193528gb9aeca0bf41656de AT mail DOT gmail DOT com> <loom DOT 20100104T233234-168 AT post DOT gmane DOT org> |
| From: | "Eduardo D'Avila" <erdavila AT gmail DOT com> |
| Date: | Mon, 4 Jan 2010 21:05:40 -0200 |
| Message-ID: | <f519c7c31001041505u30cb203ard1fe3dc010e05d79@mail.gmail.com> |
| Subject: | Re: Bug printing string where the 128th char is multibyte |
| To: | cygwin AT cygwin DOT com |
| X-IsSubscribed: | yes |
| Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm |
| List-Id: | <cygwin.cygwin.com> |
| List-Unsubscribe: | <mailto:cygwin-unsubscribe-archive-cygwin=delorie DOT com AT cygwin DOT 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 |
Using the %s didn't solve the problem:
erdavila AT antares ~/perl/feedbacks
$ cat BUG.c
#include <stdio.h>
int main() {
const char * str =3D
"0123456789" // 0 - 9
"0123456789" // 10 - 19
"0123456789" // 20 - 29
"0123456789" // 30 - 39
"0123456789" // 40 - 49
"0123456789" // 50 - 59
"0123456789" // 60 - 69
"0123456789" // 70 - 79
"0123456789" // 80 - 89
"0123456789" // 90 - 99
"0123456789" // 100 - 109
"0123456789" // 110 - 119
"0123456=E789" // 120 - 127
;
printf("%s", str);
return 0;
}
erdavila AT antares ~/perl/feedbacks
$ gcc -Wall BUG.c -o BUG
erdavila AT antares ~/perl/feedbacks
$ ./BUG
=E789
Eduardo R. D'Avila
2010/1/4 Eric Blake <ebb9 AT byu DOT net>:
> Eduardo D'Avila <erdavila <at> gmail.com> writes:
>
>> I've found a bug that happens when the 128th (index 127 on a 0-based
>> string) char of a string is a multibyte char. When I print such
>> string, only the multibyte char and the chars after it are displayed.
>
> What you've found is a bug in your own program, at lesat for the BUG.c ve=
rsion
> of your report.
>
> http://cygwin.com/ml/cygwin/2010-01/msg00100.html
>
> Try 'printf ("%s",str)' rather than 'printf (str)' to see the difference.=
=A0And
> why 128 bytes into the string? =A0That's the cutoff of where gcc optimize=
s a
> printf without % into a puts.
>
> --
> Eric Blake
> --
> Problem reports: =A0 =A0 =A0 http://cygwin.com/problems.html
> FAQ: =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 http://cygwin.com/faq/
> Documentation: =A0 =A0 =A0 =A0 http://cygwin.com/docs.html
> Unsubscribe info: =A0 =A0 =A0http://cygwin.com/ml/#unsubscribe-simple
>
>
--
Problem reports: http://cygwin.com/problems.html
FAQ: http://cygwin.com/faq/
Documentation: http://cygwin.com/docs.html
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |