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: References: From: "Eduardo D'Avila" Date: Mon, 4 Jan 2010 21:05:40 -0200 Message-ID: Subject: Re: Bug printing string where the 128th char is multibyte To: cygwin AT cygwin DOT com Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , 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 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 : > Eduardo D'Avila 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