From 684353fc03afd6e7c887b65bd18f0b3aeb98101c Mon Sep 17 00:00:00 2001 From: Jeremy Bopp Date: Sun, 11 Sep 2022 09:08:14 -0500 Subject: [Win32] Negative length `IO#sysread` Raise `ArgumentError` in `IO#sysread` on Windows when given a negative length. Fixes [Bug #18880] --- io.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'io.c') diff --git a/io.c b/io.c index 30165e1616..675c0ad3c2 100644 --- a/io.c +++ b/io.c @@ -3053,7 +3053,8 @@ static int io_setstrbuf(VALUE *str, long len) { #ifdef _WIN32 - len = (len + 1) & ~1L; /* round up for wide char */ + if (len > 0) + len = (len + 1) & ~1L; /* round up for wide char */ #endif if (NIL_P(*str)) { *str = rb_str_new(0, len); -- cgit v1.2.1