summaryrefslogtreecommitdiff
path: root/cont.c
diff options
context:
space:
mode:
Diffstat (limited to 'cont.c')
-rw-r--r--cont.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/cont.c b/cont.c
index 3f0a5cb45f..7bc1724176 100644
--- a/cont.c
+++ b/cont.c
@@ -1981,11 +1981,13 @@ fiber_to_s(VALUE fibval)
void
rb_fiber_atfork(rb_thread_t *th)
{
- if (&th->root_fiber->cont.saved_ec != th->ec) {
- th->root_fiber = th->ec->fiber_ptr;
- th->root_fiber->cont.type = ROOT_FIBER_CONTEXT;
+ if (th->root_fiber) {
+ if (&th->root_fiber->cont.saved_ec != th->ec) {
+ th->root_fiber = th->ec->fiber_ptr;
+ th->root_fiber->cont.type = ROOT_FIBER_CONTEXT;
+ }
+ th->root_fiber->prev = 0;
}
- th->root_fiber->prev = 0;
}
#endif