From: "nobu (Nobuyoshi Nakada)" Date: 2022-08-24T01:05:55+00:00 Subject: [ruby-core:109654] [Ruby master Bug#18973] Kernel#sprintf: %c allows codepoints above 127 for 7-bits ASCII encoding Issue #18973 has been updated by nobu (Nobuyoshi Nakada). ```diff diff --git a/regenc.c b/regenc.c index 16d62fdf409..88084c97e49 100644 --- a/regenc.c +++ b/regenc.c @@ -614,6 +614,10 @@ extern int onigenc_single_byte_mbc_enc_len(const UChar* p ARG_UNUSED, const UChar* e ARG_UNUSED, OnigEncoding enc ARG_UNUSED) { +#ifdef RUBY + if (code > 0xff) + return 0; +#endif return 1; } ``` ---------------------------------------- Bug #18973: Kernel#sprintf: %c allows codepoints above 127 for 7-bits ASCII encoding https://bugs.ruby-lang.org/issues/18973#change-98877 * Author: andrykonchin (Andrew Konchin) * Status: Open * Priority: Normal * ruby -v: 3.0.3 * Backport: 2.7: UNKNOWN, 3.0: UNKNOWN, 3.1: UNKNOWN ---------------------------------------- I've noticed the following behavior: ```ruby sprintf("%c".encode("US-ASCII"), 128) => "\x80" sprintf("%c".encode("US-ASCII"), 128).valid_encoding? => false ``` Specifying codepoints 128-255 for ASCII encoded formatting sequence leads to a broken string. ```ruby sprintf("%c".encode("US-ASCII"), 255) => "\xFF" sprintf("%c".encode("US-ASCII"), 256) (irb):17:in `sprintf': 256 out of char range (RangeError) ``` Specifying codepoint greater that 255 causes the expected exception `out of char range`. I suppose this exception should be raised for codepoints 128-255 as well (for ASCII encoding). -- https://bugs.ruby-lang.org/ Unsubscribe: