From c5a19b38afb0df3fbc4eb190b08840603039d5fb Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 23 Dec 2010 02:00:12 +0000 Subject: [PATCH] * 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 --- ChangeLog | 5 +++++ error.c | 5 ++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 341281b90c..a2039008e7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Dec 23 11:00:09 2010 Nobuyoshi Nakada + + * error.c (rb_check_type): check for type from extensions for ruby + 1.8. see [ruby-core:33797]. + Thu Dec 23 08:12:59 2010 Aaron Patterson * lib/net/smtp.rb: refactoring Net::SMTP#esmtp= to use an 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); } }