summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-06-26 07:30:01 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-06-26 07:30:01 +0000
commitab7c645fee1f3776951da9928c57f774c80e55ce (patch)
tree52047a5711ba4bb683a0d6273a43ec893826074d
parent9b9cc53e236ebae47b2f96d5ab7c3f9e3c158702 (diff)
* thread.c (rb_thread_wait_fd_rw): terminate fdset.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12625 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--thread.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 26145a8198..e975f8fb1e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Tue Jun 26 16:28:24 2007 Koichi Sasada <ko1@atdot.net>
+
+ * thread.c (rb_thread_wait_fd_rw): terminate fdset.
+
Tue Jun 26 16:26:58 2007 NAKAMURA Usaku <usa@ruby-lang.org>
* regint.h: IL32LLP64 support.
diff --git a/thread.c b/thread.c
index 7aec816dc5..9174b533eb 100644
--- a/thread.c
+++ b/thread.c
@@ -1764,6 +1764,8 @@ rb_thread_wait_fd_rw(int fd, int read)
result = do_select(fd + 1, 0, rb_fd_ptr(&set), 0, 0);
}
+ rb_fd_term(&set);
+
if (result < 0 && errno != EBADF) {
rb_sys_fail(0);
}