diff options
| author | nagachika <nagachika@ruby-lang.org> | 2025-10-05 09:39:04 +0900 |
|---|---|---|
| committer | nagachika <nagachika@ruby-lang.org> | 2025-10-05 09:39:04 +0900 |
| commit | 7a67358006207f525a78775e1417ad4fb7b0484d (patch) | |
| tree | 90ef8edefc73a32bf71189ed45c2cb01b5de5add | |
| parent | b202a1fe034e9e4e77fb778ad032c01d014d677f (diff) | |
merge revision(s) ef2b26cc3eaed06c5c9d4ef2c6d8669ff357afa4: [Backport #21611]
Message not found for revision: ef2b26cc3eaed06c5c9d4ef2c6d8669ff357afa4
| -rw-r--r-- | compile.c | 2 | ||||
| -rw-r--r-- | version.h | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -12204,7 +12204,7 @@ ibf_load_catch_table(const struct ibf_load *load, ibf_offset_t catch_table_offse table->entries[i].sp = (unsigned int)ibf_load_small_value(load, &reading_pos); rb_iseq_t *catch_iseq = (rb_iseq_t *)ibf_load_iseq(load, (const rb_iseq_t *)(VALUE)iseq_index); - RB_OBJ_WRITE(parent_iseq, &table->entries[i].iseq, catch_iseq); + RB_OBJ_WRITE(parent_iseq, UNALIGNED_MEMBER_PTR(&table->entries[i], iseq), catch_iseq); } return table; } @@ -11,7 +11,7 @@ # define RUBY_VERSION_MINOR RUBY_API_VERSION_MINOR #define RUBY_VERSION_TEENY 9 #define RUBY_RELEASE_DATE RUBY_RELEASE_YEAR_STR"-"RUBY_RELEASE_MONTH_STR"-"RUBY_RELEASE_DAY_STR -#define RUBY_PATCHLEVEL 174 +#define RUBY_PATCHLEVEL 175 #include "ruby/version.h" #include "ruby/internal/abi.h" |
