aboutsummaryrefslogtreecommitdiffstats
path: root/process.c
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-06-07 13:13:52 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-06-07 13:13:52 +0000
commit0d92aac60205ef80daae9b7b32e822c9f243549e (patch)
tree6d7ea56d2eebfaeeea766548ca40787457365972 /process.c
parent13edb951b71881b6ef89d1ab10e2e50eadd5d8da (diff)
downloadruby-0d92aac60205ef80daae9b7b32e822c9f243549e.tar.gz
* process.c (rb_fork_err): Fix the conditoin to use rb_protect.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35955 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'process.c')
-rw-r--r--process.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/process.c b/process.c
index 752c174b65..3b4f3a6008 100644
--- a/process.c
+++ b/process.c
@@ -2787,13 +2787,13 @@ rb_fork_err(int *status, int (*chfunc)(void*, char *, size_t), void *charg, VALU
#if defined(EWOULDBLOCK) && EWOULDBLOCK != EAGAIN
case EWOULDBLOCK:
#endif
- if (!status && !chfunc) {
+ if (!status) {
rb_thread_sleep(1);
continue;
}
else {
rb_protect((VALUE (*)())rb_thread_sleep, 1, &state);
- if (status) *status = state;
+ *status = state;
if (!state) continue;
}
default: