diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-04-01 08:31:49 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-04-01 08:31:49 +0000 |
| commit | f6a233057f0329372374129f06ad4d9815a3fa8e (patch) | |
| tree | a528c42a0de4c92f7dd999523f0b477d2f4faa6c /ext | |
| parent | fa38e59a5fd4177872a21b4411aaca9de1787747 (diff) | |
| download | ruby-f6a233057f0329372374129f06ad4d9815a3fa8e.tar.gz ruby-f6a233057f0329372374129f06ad4d9815a3fa8e.tar.xz ruby-f6a233057f0329372374129f06ad4d9815a3fa8e.zip | |
* io.c (rb_io_fptr_cleanup): need flush even when io will not be
closed.
* io.c (rb_io_initialize): was calling wrong function
rb_io_mode_flags().
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2316 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/racc/cparse/cparse.c | 2 | ||||
| -rw-r--r-- | ext/socket/socket.c | 9 |
2 files changed, 9 insertions, 2 deletions
diff --git a/ext/racc/cparse/cparse.c b/ext/racc/cparse/cparse.c index 314e6a39c..84d0af829 100644 --- a/ext/racc/cparse/cparse.c +++ b/ext/racc/cparse/cparse.c @@ -253,6 +253,8 @@ racc_yyparse(parser, recv, mid, arg, indebug) return v->retval; } +static VALUE call_scaniter _((VALUE)); + static VALUE call_scaniter(data) VALUE data; diff --git a/ext/socket/socket.c b/ext/socket/socket.c index b3cdf6248..cc76bec78 100644 --- a/ext/socket/socket.c +++ b/ext/socket/socket.c @@ -186,7 +186,6 @@ init_sock(sock, fd) fp->f = rb_fdopen(fd, "r"); #ifdef NT fp->finalize = sock_finalize; -#else #endif fp->f2 = rb_fdopen(fd, "w"); fp->mode = FMODE_READWRITE; @@ -199,7 +198,13 @@ static VALUE bsock_s_for_fd(klass, fd) VALUE klass, fd; { - return init_sock(rb_obj_alloc(klass), NUM2INT(fd)); + OpenFile *fptr; + VALUE sock = init_sock(rb_obj_alloc(klass), NUM2INT(fd)); + + GetOpenFile(sock, fptr); + fptr->mode |= FMODE_FDOPEN; + + return sock; } static VALUE |
