summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-30 08:43:47 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-30 08:43:47 +0000
commitc08785a36278ad10aa977168813e1cfcb531cc7b (patch)
treed3223c1edefddad12a04559974b4408f34718338
parent1dbc720c0d91bfdb39dbef75606d5cd4ef4d9884 (diff)
string.c: use rb_check_funcall
* string.c (rb_str_cmp_m): use rb_check_funcall instead of respond_to and call. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38043 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--string.c6
2 files changed, 7 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index f04f4ff1d7..1bc049031c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,7 @@
-Fri Nov 30 17:43:39 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
+Fri Nov 30 17:43:45 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * string.c (rb_str_cmp_m): use rb_check_funcall instead of respond_to
+ and call.
* string.c (rb_str_cmp_m): return fixed value, one of -1,0,+1 always.
diff --git a/string.c b/string.c
index 4270460e16..c6379bbf5b 100644
--- a/string.c
+++ b/string.c
@@ -2385,15 +2385,15 @@ rb_str_cmp_m(VALUE str1, VALUE str2)
int result;
if (!RB_TYPE_P(str2, T_STRING)) {
+ VALUE tmp;
if (!rb_respond_to(str2, rb_intern("to_str"))) {
return Qnil;
}
- else if (!rb_respond_to(str2, rb_intern("<=>"))) {
+ else if ((tmp = rb_check_funcall(str2, rb_intern("<=>"), 1, &str1)) ==
+ Qundef) {
return Qnil;
}
else {
- VALUE tmp = rb_funcall(str2, rb_intern("<=>"), 1, str1);
-
if (NIL_P(tmp)) return Qnil;
result = -rb_cmpint(tmp, str1, str2);
}