catwell (Pierre Chapuis)
- Login: catwell
- Email: catwell@archlinux.us
- Registered on: 03/10/2011
- Last sign in: 03/10/2011
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
03/10/2011
-
10:44 PM Ruby Bug #4492: Segfault on successive stack overflows
- =begin
Oops, apparently Redmine didn't like my markup. Same report with an alternative syntax follows...
On a Mac, this snippet crashes Ruby:
def f(*x); end
begin
f(*(0..120000))
rescue
nil
end
f(*(0..120000))
H... -
10:39 PM Ruby Bug #4492 (Closed): Segfault on successive stack overflows
- On a Mac, this snippet crashes Ruby:
```
def f(*x); end
begin
f(*(0..120000))
rescue
nil
end
f(*(0..120000))
```
Here is the result when run with ruby:
```
segfaulter.rb:7: [BUG] Segmentation fault
ruby 1....