diff options
author | Nobuyoshi Nakada <[email protected]> | 2019-08-08 21:08:00 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2019-08-08 21:27:39 +0900 |
commit | 3d87b774c4e38e0dbe3ef181183565c5987cd05f (patch) | |
tree | c439cec4a2ae6dac09a42ca8b7127ac37122c70a /load.c | |
parent | b1594ca3d6b72edb60927418482652ce93209499 (diff) |
Use `ec` instead of `th->ec` where the `th` came from the `ec`
Diffstat (limited to 'load.c')
-rw-r--r-- | load.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -579,7 +579,7 @@ rb_load_internal0(rb_execution_context_t *ec, VALUE fname, int wrap) rb_thread_t *volatile th0 = th; #endif - th->ec->errinfo = Qnil; /* ensure */ + ec->errinfo = Qnil; /* ensure */ if (!wrap) { th->top_wrapper = 0; @@ -591,7 +591,7 @@ rb_load_internal0(rb_execution_context_t *ec, VALUE fname, int wrap) rb_extend_object(th->top_self, th->top_wrapper); } - EC_PUSH_TAG(th->ec); + EC_PUSH_TAG(ec); state = EC_EXEC_TAG(); if (state == TAG_NONE) { rb_ast_t *ast; @@ -624,8 +624,8 @@ rb_load_internal0(rb_execution_context_t *ec, VALUE fname, int wrap) rb_vm_jump_tag_but_local_jump(state); } - if (!NIL_P(th->ec->errinfo)) { - rb_exc_raise(th->ec->errinfo); + if (!NIL_P(ec->errinfo)) { + rb_exc_raise(ec->errinfo); } } |