summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornagachika <nagachika@ruby-lang.org>2025-10-05 09:39:04 +0900
committernagachika <nagachika@ruby-lang.org>2025-10-05 09:39:04 +0900
commit7a67358006207f525a78775e1417ad4fb7b0484d (patch)
tree90ef8edefc73a32bf71189ed45c2cb01b5de5add
parentb202a1fe034e9e4e77fb778ad032c01d014d677f (diff)
merge revision(s) ef2b26cc3eaed06c5c9d4ef2c6d8669ff357afa4: [Backport #21611]
Message not found for revision: ef2b26cc3eaed06c5c9d4ef2c6d8669ff357afa4
-rw-r--r--compile.c2
-rw-r--r--version.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/compile.c b/compile.c
index a31a933ff8..1ccebdecf1 100644
--- a/compile.c
+++ b/compile.c
@@ -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;
}
diff --git a/version.h b/version.h
index 05cbad35ec..b9aaa6d186 100644
--- a/version.h
+++ b/version.h
@@ -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"