diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-09-17 21:47:14 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-09-17 21:47:14 +0000 |
commit | 9500f30dce0f24acc8c0f995a686ba65da1c6eaa (patch) | |
tree | 0a431720e28b6b10aa20f1974ce585fce09d292f | |
parent | a1582ade5e8a18e2bcfbc1dc1aeecfbf36fa79e1 (diff) | |
download | ruby-9500f30dce0f24acc8c0f995a686ba65da1c6eaa.tar.gz ruby-9500f30dce0f24acc8c0f995a686ba65da1c6eaa.tar.xz ruby-9500f30dce0f24acc8c0f995a686ba65da1c6eaa.zip |
* dir.c (push_glob): str should be a string always.
* dir.c (rb_push_glob, dir_globs): use #to_path to convert non-
string values. cf. [ruby-dev:39345]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24985 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | dir.c | 6 |
2 files changed, 10 insertions, 3 deletions
@@ -1,3 +1,10 @@ +Fri Sep 18 06:47:13 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * dir.c (push_glob): str should be a string always. + + * dir.c (rb_push_glob, dir_globs): use #to_path to convert non- + string values. cf. [ruby-dev:39345] + Fri Sep 18 06:36:51 2009 Nobuyoshi Nakada <nobu@ruby-lang.org> * lib/mkmf.rb (rm_f, rm_rf): FileUtils.rm can take an array. @@ -1613,7 +1613,7 @@ push_glob(VALUE ary, VALUE str, int flags) args.value = ary; args.enc = enc; - return ruby_brace_glob0(StringValuePtr(str), flags | GLOB_VERBOSE, + return ruby_brace_glob0(RSTRING_PTR(str), flags | GLOB_VERBOSE, rb_glob_caller, (VALUE)&args, enc); } @@ -1623,7 +1623,7 @@ rb_push_glob(VALUE str, int flags) /* '\0' is delimiter */ long offset = 0; VALUE ary; - StringValue(str); + FilePathValue(str); ary = rb_ary_new(); while (offset < RSTRING_LEN(str)) { @@ -1653,7 +1653,7 @@ dir_globs(long argc, VALUE *argv, int flags) for (i = 0; i < argc; ++i) { int status; VALUE str = argv[i]; - SafeStringValue(str); + FilePathValue(str); status = push_glob(ary, str, flags); if (status) GLOB_JUMP_TAG(status); } |