From 548c8f5f7aa743ae05610ed372f857a6b488e89c Mon Sep 17 00:00:00 2001 From: Samuel Williams Date: Sat, 25 Dec 2021 02:26:06 +1300 Subject: Prefer to use RTEST when checking result of `rb_io_wait`. (#5341) * Prefer to use RTEST when checking result of `rb_io_wait`. * Consistently use false for signifying no events ready. --- ext/io/console/console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/io') diff --git a/ext/io/console/console.c b/ext/io/console/console.c index 5dec1a4c06..4c5f89f80d 100644 --- a/ext/io/console/console.c +++ b/ext/io/console/console.c @@ -556,7 +556,7 @@ console_getch(int argc, VALUE *argv, VALUE io) if (!(w & RB_WAITFD_IN)) return Qnil; # else VALUE result = rb_io_wait(io, RUBY_IO_READABLE, timeout); - if (result == Qfalse) return Qnil; + if (!RTEST(result)) return Qnil; # endif } else if (optp->vtime) { -- cgit v1.2.3