diff options
| author | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-02-22 09:48:27 +0000 |
|---|---|---|
| committer | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-02-22 09:48:27 +0000 |
| commit | 23bc5b66a9766b56774c30fbb60578e81094ec3c (patch) | |
| tree | 1b4703c3ab060ed8544c71415c009e6261fc6002 /io.c | |
| parent | 1a5a4c8a0a0d3e7a9a1c23a9d565bd0e806b0c0a (diff) | |
merges r22121 from trunk into ruby_1_9_1.
* io.c (rb_io_s_binread): ensures file path. [ruby-dev:37940]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@22519 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
| -rw-r--r-- | io.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -7292,6 +7292,7 @@ rb_io_s_binread(int argc, VALUE *argv, VALUE io) struct foreach_arg arg; rb_scan_args(argc, argv, "12", NULL, NULL, &offset); + FilePathValue(argv[0]); arg.io = rb_io_open(argv[0], rb_str_new_cstr("rb:ASCII-8BIT"), Qnil, Qnil); if (NIL_P(arg.io)) return Qnil; arg.argv = argv+1; |
