spec/ruby/optional/capi/ext/io_spec.c: guard unreachable code

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64379 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2018-08-15 12:53:45 +00:00
Родитель 9071cd6393
Коммит 50ad099590
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -144,8 +144,10 @@ NORETURN(VALUE io_spec_rb_io_wait_readable(VALUE self, VALUE io, VALUE read_p));
VALUE io_spec_rb_io_wait_readable(VALUE self, VALUE io, VALUE read_p) {
int fd = io_spec_get_fd(io);
# if !SET_NON_BLOCKING_FAILS_ALWAYS
char buf[RB_IO_WAIT_READABLE_BUF];
int ret, saved_errno;
# endif
if (set_non_blocking(fd) == -1)
rb_sys_fail("set_non_blocking failed");
@ -173,6 +175,8 @@ VALUE io_spec_rb_io_wait_readable(VALUE self, VALUE io, VALUE read_p) {
}
return ret ? Qtrue : Qfalse;
# else
UNREACHABLE;
# endif
}
#endif