An error occurred fetching the project authors.
- 03 Apr, 2017 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
- 02 Apr, 2017 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 01 Apr, 2017 4 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
- 19 Mar, 2017 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 18 Mar, 2017 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
- 16 Mar, 2017 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 13 Mar, 2017 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 11 Mar, 2017 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Also fix #3499. The issue was solved by #3462.
-
- 10 Mar, 2017 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
- 05 Mar, 2017 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 04 Mar, 2017 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
- 02 Mar, 2017 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Instead of shifting mruby VM stack, we always use CALL_MAXARGS.
-
Yukihiro "Matz" Matsumoto authored
There are 3 levels of C++ exception handling: * default - no C++ exception (use setjmp/longjmp) * enable_cxx_exception (use C++ exceptions with C ABI) * enable_cxx_abi (use C++ ABI including exceptions)
-
- 01 Mar, 2017 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 27 Feb, 2017 6 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
- 15 Feb, 2017 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
`mrb_funcall()` recursion can cause stack overflow easily, so recursion depth is now limited to MRB_FUNCALL_DEPTH_MAX, which default value is 512.
-
Yukihiro "Matz" Matsumoto authored
-
- 13 Feb, 2017 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
But #3421 still cause stack overflow error due to infinite recursion. To prevent overflow, we need to add different stack depth check.
-
Yukihiro "Matz" Matsumoto authored
This issue was reported by https://hackerone.com/d4nny
-
Yukihiro "Matz" Matsumoto authored
The issue was reported by https://hackerone.com/titanous
-
- 11 Feb, 2017 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
There's incompatibility left for mruby. When you return from `ensure` clause, mruby simply ignores the return value. CRuby returns from the method squashing the exception raised. ``` def f no_such_method() # NoMethodError ensure return 22 end p f() # CRuby prints `22` ```
-
Yukihiro "Matz" Matsumoto authored
OP_RETURN accesses ci[1]->stackent that might be broken; fix #3442
-
- 08 Feb, 2017 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-