From c5a19b38afb0df3fbc4eb190b08840603039d5fb Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 23 Dec 2010 02:00:12 +0000 Subject: * error.c (rb_check_type): check for type from extensions for ruby 1.8. see [ruby-core:33797]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30300 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- error.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'error.c') diff --git a/error.c b/error.c index 7c9e22b9ed..bfbc86cce9 100644 --- a/error.c +++ b/error.c @@ -354,7 +354,10 @@ rb_check_type(VALUE x, int t) } type++; } - rb_bug("unknown type 0x%x (0x%x given)", t, TYPE(x)); + if (xt > T_MASK && xt <= 0x3f) { + rb_fatal("unknown type 0x%x (0x%x given, probably comes from extension library for ruby 1.8)", t, xt); + } + rb_bug("unknown type 0x%x (0x%x given)", t, xt); } } -- cgit v1.2.1