From 0ef94bd2afa035648032e382201f1c9af29c5c3a Mon Sep 17 00:00:00 2001 From: normal Date: Thu, 25 Sep 2014 20:29:15 +0000 Subject: object.c (rb_class_real): do not dereference 0 VALUE * test/ruby/test_module.rb (test_inspect_segfault): Test case and bug report by Thomas Stratmann. [ruby-core:65214] [Bug #10282] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47715 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- object.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'object.c') diff --git a/object.c b/object.c index 5b0f7dfdd7..3126ed01e6 100644 --- a/object.c +++ b/object.c @@ -206,9 +206,8 @@ rb_obj_not_equal(VALUE obj1, VALUE obj2) VALUE rb_class_real(VALUE cl) { - if (cl == 0) - return 0; - while ((RBASIC(cl)->flags & FL_SINGLETON) || BUILTIN_TYPE(cl) == T_ICLASS) { + while (cl && + ((RBASIC(cl)->flags & FL_SINGLETON) || BUILTIN_TYPE(cl) == T_ICLASS)) { cl = RCLASS_SUPER(cl); } return cl; -- cgit v1.2.3