зеркало из https://github.com/github/ruby.git
* io.c (rb_io_ctl): [ruby-dev:25019]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7435 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
c1b036033b
Коммит
aa997fca3e
|
@ -1,3 +1,7 @@
|
|||
Thu Dec 2 07:57:16 2004 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* io.c (rb_io_ctl): [ruby-dev:25019]
|
||||
|
||||
Wed Dec 1 06:13:00 2004 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* ext/nkf/nkf.c: add constant NKF::VERSION
|
||||
|
|
2
io.c
2
io.c
|
@ -4707,7 +4707,6 @@ rb_io_ctl(io, req, arg, io_p)
|
|||
int retval;
|
||||
|
||||
rb_secure(2);
|
||||
GetOpenFile(io, fptr);
|
||||
|
||||
if (NIL_P(arg) || arg == Qfalse) {
|
||||
narg = 0;
|
||||
|
@ -4748,6 +4747,7 @@ rb_io_ctl(io, req, arg, io_p)
|
|||
narg = (long)RSTRING(arg)->ptr;
|
||||
}
|
||||
}
|
||||
GetOpenFile(io, fptr);
|
||||
retval = io_cntl(fileno(fptr->f), cmd, narg, io_p);
|
||||
if (retval < 0) rb_sys_fail(fptr->path);
|
||||
if (TYPE(arg) == T_STRING && RSTRING(arg)->ptr[len] != 17) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче