vindvaki (Hordur Freyr Yngvason)
- Login: vindvaki
- Registered on: 12/16/2016
- Last sign in: 04/29/2017
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
12/16/2016
-
07:36 PM Ruby Bug #13042 (Closed): gsub segfaults when the pattern is a matching string and the replacement has an unmatched named capture
- Ruby segfaults for all code of the form
~~~ ruby
string.gsub(pattern, replacement)
~~~
where `pattern` is a substring of `string` (not a regex) and `replacement` includes a "named capture", such as `\k<>`. For example:
~~~ rub...