* io.c (io_writev): total may be a bignum.  [Feature #9323]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60371 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2017-10-23 05:09:34 +00:00
Родитель c0f40369b6
Коммит 92023a8f60
1 изменённых файлов: 1 добавлений и 1 удалений

2
io.c
Просмотреть файл

@ -1651,7 +1651,7 @@ io_writev(int argc, VALUE *argv, VALUE io)
n = io_fwrite(argv[i], fptr, (i < argc-1));
#endif
if (n == -1L) rb_sys_fail_path(fptr->pathv);
total = rb_fix_plus_fix(LONG2FIX(n), total);
total = rb_fix_plus(LONG2FIX(n), total);
}
return total;