summaryrefslogtreecommitdiff
path: root/file.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-06-01 12:58:02 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-06-01 12:58:02 +0000
commit31e6dfee6c066ebfe82d5898b00924f112285331 (patch)
tree114e1e53af6a54de8674b2aa71baacd402991bc7 /file.c
parentc4e2e584e03c28eced3e6e8f4dcb713a2ce92a65 (diff)
file.c: rb_check_funcall_default for fallback value
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58986 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'file.c')
-rw-r--r--file.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/file.c b/file.c
index 49015b5ae4..2af6b75874 100644
--- a/file.c
+++ b/file.c
@@ -179,10 +179,7 @@ rb_get_path_check_to_string(VALUE obj, int level)
return obj;
}
CONST_ID(to_path, "to_path");
- tmp = rb_check_funcall(obj, to_path, 0, 0);
- if (tmp == Qundef) {
- tmp = obj;
- }
+ tmp = rb_check_funcall_default(obj, to_path, 0, 0, obj);
StringValue(tmp);
return tmp;
}