* error.c (exc_equal): should not compare recursively.

[ruby-dev:36796]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19856 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2008-10-20 11:18:50 +00:00
parent 6259c87d02
commit b348ed3344
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Mon Oct 20 17:31:17 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
* error.c (exc_equal): should not compare recursively.
[ruby-dev:36796]
Mon Oct 20 16:48:43 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
* include/ruby/ruby.h (ExportStringValue): new macro to convert

View File

@ -558,7 +558,7 @@ exc_equal(VALUE exc, VALUE obj)
if (exc == obj) return Qtrue;
if (rb_obj_class(exc) != rb_obj_class(obj))
return rb_equal(obj, exc);
return Qfalse;
CONST_ID(id_mesg, "mesg");
if (!rb_equal(rb_attr_get(exc, id_mesg), rb_attr_get(obj, id_mesg)))
return Qfalse;