ruby-changes:71372
From: nagachika <ko1@a...>
Date: Sat, 12 Mar 2022 16:54:15 +0900 (JST)
Subject: [ruby-changes:71372] 2ec864d9b7 (ruby_3_0): merge revision(s) 9f0c6f20c58067923864575b60af730d191b8f6c: [Backport #18382]
https://git.ruby-lang.org/ruby.git/commit/?id=2ec864d9b7 From 2ec864d9b7a2c79b5bd9136665aa6f705fa76e53 Mon Sep 17 00:00:00 2001 From: nagachika <nagachika@r...> Date: Sat, 12 Mar 2022 14:43:41 +0900 Subject: merge revision(s) 9f0c6f20c58067923864575b60af730d191b8f6c: [Backport #18382] [Bug #18382] Fix crash in compaction for ObjectSpace.trace_object_allocations ObjectSpace.trace_object_allocations can crash when auto-compaction is enabled. --- ext/objspace/object_tracing.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- ext/objspace/object_tracing.c | 3 ++- version.h | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/ext/objspace/object_tracing.c b/ext/objspace/object_tracing.c index 4973a7535b..66d6baa491 100644 --- a/ext/objspace/object_tracing.c +++ b/ext/objspace/object_tracing.c @@ -208,7 +208,8 @@ allocation_info_tracer_compact(void *ptr) https://github.com/ruby/ruby/blob/trunk/ext/objspace/object_tracing.c#L208 { struct traceobj_arg *trace_arg = (struct traceobj_arg *)ptr; - if (st_foreach_with_replace(trace_arg->object_table, hash_foreach_should_replace_key, hash_replace_key, 0)) { + if (trace_arg->object_table && + st_foreach_with_replace(trace_arg->object_table, hash_foreach_should_replace_key, hash_replace_key, 0)) { rb_raise(rb_eRuntimeError, "hash modified during iteration"); } } diff --git a/version.h b/version.h index eddfad5cc8..887a86547a 100644 --- a/version.h +++ b/version.h @@ -12,11 +12,11 @@ https://github.com/ruby/ruby/blob/trunk/version.h#L12 # define RUBY_VERSION_MINOR RUBY_API_VERSION_MINOR #define RUBY_VERSION_TEENY 4 #define RUBY_RELEASE_DATE RUBY_RELEASE_YEAR_STR"-"RUBY_RELEASE_MONTH_STR"-"RUBY_RELEASE_DAY_STR -#define RUBY_PATCHLEVEL 180 +#define RUBY_PATCHLEVEL 181 #define RUBY_RELEASE_YEAR 2022 -#define RUBY_RELEASE_MONTH 2 -#define RUBY_RELEASE_DAY 19 +#define RUBY_RELEASE_MONTH 3 +#define RUBY_RELEASE_DAY 12 #include "ruby/version.h" -- cgit v1.2.1 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/