mailing list of musl libc
 help / color / mirror / code / Atom feed
From: Rich Felker <dalias@libc.org>
To: Konstantin Isakov <dragonroot@gmail.com>
Cc: musl@lists.openwall.com
Subject: Re: [musl] [BUG] swprintf() doesn't handle Unicode characters correctly
Date: Mon, 24 May 2021 17:50:22 -0400	[thread overview]
Message-ID: <20210524215021.GC2546@brightrain.aerifal.cx> (raw)
In-Reply-To: <CAMOBWkOsdWXqva-5LVYo76jcBEr8TkE6V-O69XRw0ruhn5Fd_g@mail.gmail.com>

On Mon, May 24, 2021 at 12:39:35AM -0400, Konstantin Isakov wrote:
> Hi,
> 
> The following program:
> 
> ===================================
> #include <stdio.h>
> #include <wchar.h>
> 
> int main()
> {
>   wchar_t buf[ 32 ];
> 
>   swprintf( buf, sizeof( buf ) / sizeof( *buf ), L"ab\u00E1c" );
> 
>   for ( wchar_t * p = buf; *p; ++p )
>     printf( "%u\n", ( unsigned ) *p );
> 
>   return 0;
> }
> ===================================
> 
> With musl 1.2.2 produces the following output:
> 97
> 98
> 
> The expected output is:
> 97
> 98
> 225
> 99
> 
> With musl, only the first two characters ('a' and 'b') are processed, and
> the string ends on a Unicode character (U+00E1, which is an 'a' with acute
> accent), instead of outputting it and the last character, 'c'.
> 
> Please CC me when replying. Thanks!

You need to call setlocale(LC_CTYPE, ""). Otherwise the character
\u00e1 is unrepresentable, because POSIX requires the C locale be
single-byte and you're in the C locale until you call setlocale, and
thus produces an encoding error (EILSEQ).

Rich

  reply	other threads:[~2021-05-24 21:50 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-24  4:39 Konstantin Isakov
2021-05-24 21:50 ` Rich Felker [this message]
2021-05-25  0:04   ` Konstantin Isakov
2021-05-25  0:30     ` Rich Felker
2021-05-25  0:46       ` Konstantin Isakov
2021-05-25  1:09         ` Rich Felker
2021-05-25  1:58           ` Konstantin Isakov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210524215021.GC2546@brightrain.aerifal.cx \
    --to=dalias@libc.org \
    --cc=dragonroot@gmail.com \
    --cc=musl@lists.openwall.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).