summaryrefslogtreecommitdiff
path: root/string.c
diff options
context:
space:
mode:
Diffstat (limited to 'string.c')
-rw-r--r--string.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/string.c b/string.c
index 7a21e5c8eb..acdfe40434 100644
--- a/string.c
+++ b/string.c
@@ -816,10 +816,11 @@ rb_str_cmp_m(str1, str2)
else {
VALUE tmp = rb_funcall(str2, rb_intern("<=>"), 1, str1);
+ if (NIL_P(tmp)) return Qnil;
if (!FIXNUM_P(tmp)) {
- return rb_funcall(LONG2FIX(0), '-', tmp);
+ return rb_funcall(LONG2FIX(0), '-', 1, tmp);
}
- result = FIX2LONG(tmp);
+ result = -FIX2LONG(tmp);
}
}
else {