Backport #2728
ruby segfaults returning from dynamically defined method in ensure block
| Status: | Assigned | Start date: | 02/11/2010 | |
|---|---|---|---|---|
| Priority: | High | Due date: | 02/11/2010 | |
| Assignee: | % Done: | 0% |
||
| Category: | core | |||
| Target version: | - |
Description
As best as I can work out, the conditions to reproduce this crash are: 1. A begin/ensure block yields to a block passed by Enumerable (maybe passed by any compiled function?). 2. Control is forced to the ensure block from 'break' being called from Enumerable. 3. The ensure block contains a call to a dynamically defined method (created using define_method). 4. The dynamically defined method runs. 5. Instead of returning from the dynamically defined method, ruby segfaults (on windows XP), or bus errors (on OS X). Happens on both Windows XP and Mac OS X (10.5.8). Script to reproduce and output are attached.
Related issues
History
Updated by kronos (Ivan Samsonov) over 2 years ago
It is reproducing on ruby 1.9.1p243 Mac OS X 1.6
Updated by nobu (Nobuyoshi Nakada) over 2 years ago
- Category set to core
- Status changed from Open to Closed
Fixed in r26628.
Updated by nobu (Nobuyoshi Nakada) over 2 years ago
- Status changed from Closed to Assigned
- Assignee set to yugui (Yuki Sonoda)
- Priority changed from High to Normal
Updated by mame (Yusuke Endoh) over 2 years ago
- Category set to core
- Assignee changed from yugui (Yuki Sonoda) to ko1 (Koichi Sasada)
- Priority changed from Normal to High
r26628 caused new SEGV when executing rubyspec. Though the detail is still under investigation, I temporarily reverted the commit. It should not be backported to 1.9.1. -- Yusuke Endoh <mame@tsg.ne.jp>