bkutil (Balazs Kutil)
- Login: bkutil
- Email: balazs@kutilovi.cz
- Registered on: 12/04/2014
- Last sign in: 06/04/2017
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
01/02/2017
-
08:56 AM Ruby Bug #12613: iseq_set_sequence: adjust bug -1 < 0 (retry inside begin/rescue)
- This code has the same symptoms. Removing the second begin/rescue, the method, or the return statement makes the code work (reports SyntaxError, without crashing).
~~~
#!/usr/bin/env ruby
def test
begin
break
rescue
...
12/17/2014
-
04:28 PM Ruby Bug #10568: segmentation fault after pack & ioctl & unpack
- Attached is a patch, based on [4b146b25](https://github.com/ruby/ruby/commit/4b146b25333c52ca4503dfc3c4215b583e8e9963), which omits the deprecations in String API.
12/05/2014
-
09:08 AM Ruby Bug #10568: segmentation fault after pack & ioctl & unpack
- Sorry, forgot to explicitly mention that this is running on linux and that sudo is required to run the snippet (because of the ioctl).
12/04/2014
-
02:01 PM Ruby Bug #10568 (Closed): segmentation fault after pack & ioctl & unpack
- This snippet produces a segmentation fault on rubies on ruby_2_1 branch from git commit [1]
onwards and ruby_2_0_0 branch from commit [2] onwards. I was unable to reproduce the issue
on the current trunk [3]:
require 'socket'
...