summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
authorkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-09-12 11:51:11 +0000
committerkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-09-12 11:51:11 +0000
commitbb4dcd5582eafa8947c1520cc187c64e302755a2 (patch)
treeab06e8932e27ae38ddbbe161c62f97e945e98303 /thread.c
parent167f6b291f4cf697048af42820c82d8cf357e0a7 (diff)
* Backport r33231.
* thread.c (rb_thread_select): fix a typo to initialize efds properly. [Bug #5299] [ruby-core:39380] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@33258 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/thread.c b/thread.c
index 192b696629..a6d709aaed 100644
--- a/thread.c
+++ b/thread.c
@@ -2726,7 +2726,7 @@ rb_thread_select(int max, fd_set * read, fd_set * write, fd_set * except,
}
if (except) {
efds = &fdsets[2];
- rb_fd_init(wfds);
+ rb_fd_init(efds);
rb_fd_copy(efds, except, max);
}