From 565aeb81e0886c835888a425e5d05ed99fb03238 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Wed, 20 Jan 2021 15:05:30 +0900 Subject: Skip freezing check on setting temporary class path [Bug #17563] Co-authored-by: ryannevell (Ryan Nevell) --- variable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'variable.c') diff --git a/variable.c b/variable.c index 52da16f0df..92d7d11eab 100644 --- a/variable.c +++ b/variable.c @@ -3058,7 +3058,7 @@ rb_const_set(VALUE klass, ID id, VALUE val) set_namespace_path(val, build_const_path(parental_path, id)); } else if (!parental_path_permanent && NIL_P(val_path)) { - rb_ivar_set(val, tmp_classpath, build_const_path(parental_path, id)); + ivar_set(val, tmp_classpath, build_const_path(parental_path, id)); } } } -- cgit v1.2.3