diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2017-08-29 11:06:34 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2017-08-29 11:06:34 +0900 |
| commit | 8976f47e0a0399b4332cfca6e8b9de8345bcf1af (patch) | |
| tree | eca6e490b2a088be8210194503d589165780d0b5 /src/vm.c | |
| parent | c08224983867481e49a6ba23722c6bbe90107a9b (diff) | |
| download | mruby-8976f47e0a0399b4332cfca6e8b9de8345bcf1af.tar.gz mruby-8976f47e0a0399b4332cfca6e8b9de8345bcf1af.zip | |
Need to update `ci` after `callinfo` stack reallocation; fix #3796
Diffstat (limited to 'src/vm.c')
| -rw-r--r-- | src/vm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1959,8 +1959,8 @@ RETRY_TRY_BLOCK: mrb->c = c->prev; c->prev = NULL; - ci = mrb->c->ci; } + ci = mrb->c->ci; if (ci->acc < 0) { mrb_gc_arena_restore(mrb, ai); mrb->c->vmexec = FALSE; |
