aboutsummaryrefslogtreecommitdiffstats
path: root/vm_insnhelper.c
diff options
context:
space:
mode:
Diffstat (limited to 'vm_insnhelper.c')
-rw-r--r--vm_insnhelper.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/vm_insnhelper.c b/vm_insnhelper.c
index b69eaf168b..7946f9aa4f 100644
--- a/vm_insnhelper.c
+++ b/vm_insnhelper.c
@@ -1201,7 +1201,8 @@ vm_throw_start(const rb_execution_context_t *ec, rb_control_frame_t *const reg_c
if (!ct) break;
for (i=0; i < ct->size; i++) {
- const struct iseq_catch_table_entry * const entry = &ct->entries[i];
+ const struct iseq_catch_table_entry *const entry =
+ UNALIGNED_MEMBER_PTR(ct, entries[i]);
if (entry->type == CATCH_TYPE_BREAK &&
entry->iseq == base_iseq &&
@@ -2183,7 +2184,7 @@ vm_method_cfunc_entry(const rb_callable_method_entry_t *me)
rb_bug("wrong method type: %d", me->def->type);
}
#endif
- return &me->def->body.cfunc;
+ return UNALIGNED_MEMBER_PTR(me->def, body.cfunc);
}
static VALUE