mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
819156e678
When you try to start an event loop inside an event loop,
the mruby process will SIGSEGV:
```ruby
Task.new { Task.run }
Task.run
```
This change turns the second call to `Task.run` into a noop
that returns nil instead.
Fix #6865